OLD | NEW |
1 | 1 |
2 | 2 |
3 Polymer({ | 3 Polymer({ |
4 | 4 |
5 is: 'paper-tabs', | 5 is: 'paper-tabs', |
6 | 6 |
7 behaviors: [ | 7 behaviors: [ |
8 Polymer.IronResizableBehavior, | 8 Polymer.IronResizableBehavior, |
9 Polymer.IronMenubarBehavior | 9 Polymer.IronMenubarBehavior |
10 ], | 10 ], |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 cl.add('contract'); | 278 cl.add('contract'); |
279 this._positionBar(this._pos.width, this._pos.left); | 279 this._positionBar(this._pos.width, this._pos.left); |
280 // bar animation done | 280 // bar animation done |
281 } else if (cl.contains('contract')) { | 281 } else if (cl.contains('contract')) { |
282 cl.remove('contract'); | 282 cl.remove('contract'); |
283 } | 283 } |
284 } | 284 } |
285 | 285 |
286 }); | 286 }); |
287 | 287 |
OLD | NEW |