| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |