| OLD | NEW |
| 1 Polymer({ | 1 |
| 2 | 2 |
| 3 Polymer({ |
| 4 |
| 3 is: 'paper-tab', | 5 is: 'paper-tab', |
| 4 | 6 |
| 5 behaviors: [ | 7 behaviors: [ |
| 6 Polymer.IronControlState, | 8 Polymer.IronControlState, |
| 7 Polymer.IronButtonState | 9 Polymer.IronButtonState |
| 8 ], | 10 ], |
| 9 | 11 |
| 10 properties: { | 12 properties: { |
| 11 | 13 |
| 12 /** | 14 /** |
| (...skipping 21 matching lines...) Expand all Loading... |
| 34 }, | 36 }, |
| 35 | 37 |
| 36 get _parentNoink () { | 38 get _parentNoink () { |
| 37 var parent = Polymer.dom(this).parentNode; | 39 var parent = Polymer.dom(this).parentNode; |
| 38 return !!parent && !!parent.noink; | 40 return !!parent && !!parent.noink; |
| 39 }, | 41 }, |
| 40 | 42 |
| 41 _updateNoink: function() { | 43 _updateNoink: function() { |
| 42 this.noink = !!this.noink || !!this._parentNoink; | 44 this.noink = !!this.noink || !!this._parentNoink; |
| 43 } | 45 } |
| 44 }); | 46 }); |
| 47 |
| OLD | NEW |