Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tabs-extracted.js

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698