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

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

Issue 1187823002: Update Polymer components and re-run reproduce.sh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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
(Empty)
1
2
3 /**
4 * `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has k eyboard focus.
5 *
6 * @polymerBehavior Polymer.PaperInkyFocusBehavior
7 */
8 Polymer.PaperInkyFocusBehaviorImpl = {
9
10 observers: [
11 '_focusedChanged(receivedFocusFromKeyboard)'
12 ],
13
14 _focusedChanged: function(receivedFocusFromKeyboard) {
15 if (!this.$.ink) {
16 return;
17 }
18
19 this.$.ink.holdDown = receivedFocusFromKeyboard;
20 }
21
22 };
23
24 /** @polymerBehavior Polymer.PaperInkyFocusBehavior */
25 Polymer.PaperInkyFocusBehavior = [
26 Polymer.IronButtonState,
27 Polymer.IronControlState,
28 Polymer.PaperInkyFocusBehaviorImpl
29 ];
30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698