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

Side by Side Diff: polymer_0.5.4/bower_components/core-focusable/core-focusable.js

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 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 * @group Polymer Mixins 2 * @group Polymer Mixins
3 * 3 *
4 * `Polymer.CoreFocusable` is a mixin for elements that the user can interact wi th. 4 * `Polymer.CoreFocusable` is a mixin for elements that the user can interact wi th.
5 * Elements using this mixin will receive attributes reflecting the focus, press ed 5 * Elements using this mixin will receive attributes reflecting the focus, press ed
6 * and disabled states. 6 * and disabled states.
7 * 7 *
8 * @element Polymer.CoreFocusable 8 * @element Polymer.CoreFocusable
9 * @status unstable 9 * @status unstable
10 */ 10 */
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // keyboard navigation. 125 // keyboard navigation.
126 this.focused = true; 126 this.focused = true;
127 } 127 }
128 }, 128 },
129 129
130 _blurAction: function() { 130 _blurAction: function() {
131 this.focused = false; 131 this.focused = false;
132 } 132 }
133 133
134 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698