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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-selector/iron-selector-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 /** 1
2 /**
2 `iron-selector` is an element which can be used to manage a list of elements 3 `iron-selector` is an element which can be used to manage a list of elements
3 that can be selected. Tapping on the item will make the item selected. The ` selected` indicates 4 that can be selected. Tapping on the item will make the item selected. The ` selected` indicates
4 which item is being selected. The default is to use the index of the item. 5 which item is being selected. The default is to use the index of the item.
5 6
6 Example: 7 Example:
7 8
8 <iron-selector selected="0"> 9 <iron-selector selected="0">
9 <div>Item 1</div> 10 <div>Item 1</div>
10 <div>Item 2</div> 11 <div>Item 2</div>
11 <div>Item 3</div> 12 <div>Item 3</div>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 */ 46 */
46 47
47 Polymer({ 48 Polymer({
48 49
49 is: 'iron-selector', 50 is: 'iron-selector',
50 51
51 behaviors: [ 52 behaviors: [
52 Polymer.IronMultiSelectableBehavior 53 Polymer.IronMultiSelectableBehavior
53 ] 54 ]
54 55
55 }); 56 });
57
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698