| OLD | NEW |
| 1 | 1 /** |
| 2 | |
| 3 /** | |
| 4 * @demo demo/index.html | 2 * @demo demo/index.html |
| 5 * @polymerBehavior | 3 * @polymerBehavior |
| 6 */ | 4 */ |
| 7 Polymer.IronControlState = { | 5 Polymer.IronControlState = { |
| 8 | 6 |
| 9 properties: { | 7 properties: { |
| 10 | 8 |
| 11 /** | 9 /** |
| 12 * If true, the element currently has focus. | 10 * If true, the element currently has focus. |
| 13 */ | 11 */ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 } | 81 } |
| 84 }, | 82 }, |
| 85 | 83 |
| 86 _changedControlState: function() { | 84 _changedControlState: function() { |
| 87 // _controlStateChanged is abstract, follow-on behaviors may implement it | 85 // _controlStateChanged is abstract, follow-on behaviors may implement it |
| 88 if (this._controlStateChanged) { | 86 if (this._controlStateChanged) { |
| 89 this._controlStateChanged(); | 87 this._controlStateChanged(); |
| 90 } | 88 } |
| 91 } | 89 } |
| 92 | 90 |
| 93 }; | 91 }; |
| 94 | |
| OLD | NEW |