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