Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-behaviors/paper-inky-focus-behavior-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1 /**
2
3 /**
4 * `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has k eyboard focus. 2 * `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has k eyboard focus.
5 * 3 *
6 * @polymerBehavior Polymer.PaperInkyFocusBehavior 4 * @polymerBehavior Polymer.PaperInkyFocusBehavior
7 */ 5 */
8 Polymer.PaperInkyFocusBehaviorImpl = { 6 Polymer.PaperInkyFocusBehaviorImpl = {
9 7
10 observers: [ 8 observers: [
11 '_focusedChanged(receivedFocusFromKeyboard)' 9 '_focusedChanged(receivedFocusFromKeyboard)'
12 ], 10 ],
13 11
14 _focusedChanged: function(receivedFocusFromKeyboard) { 12 _focusedChanged: function(receivedFocusFromKeyboard) {
15 if (!this.$.ink) { 13 if (!this.$.ink) {
16 return; 14 return;
17 } 15 }
18 16
19 this.$.ink.holdDown = receivedFocusFromKeyboard; 17 this.$.ink.holdDown = receivedFocusFromKeyboard;
20 } 18 }
21 19
22 }; 20 };
23 21
24 /** @polymerBehavior Polymer.PaperInkyFocusBehavior */ 22 /** @polymerBehavior Polymer.PaperInkyFocusBehavior */
25 Polymer.PaperInkyFocusBehavior = [ 23 Polymer.PaperInkyFocusBehavior = [
26 Polymer.IronButtonState, 24 Polymer.IronButtonState,
27 Polymer.IronControlState, 25 Polymer.IronControlState,
28 Polymer.PaperInkyFocusBehaviorImpl 26 Polymer.PaperInkyFocusBehaviorImpl
29 ]; 27 ];
30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698