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