OLD | NEW |
(Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 3 <link rel="import" href="../settings_shared_css.html"> |
| 4 |
| 5 <dom-module id="network-config-select"> |
| 6 <template> |
| 7 <style include="settings-shared md-select"> |
| 8 </style> |
| 9 |
| 10 <div class="settings-box"> |
| 11 <div id="label" class="start">[[label]]</div> |
| 12 <select class="md-select" disabled="[[disabled]]" |
| 13 value="{{value::change}}" aria-labelledby="label"> |
| 14 <template is="dom-repeat" items="[[items]]"> |
| 15 <option value="[[item]]"> |
| 16 [[getOncLabel_(item, oncPrefix)]] |
| 17 </option> |
| 18 </template> |
| 19 </select> |
| 20 </div> |
| 21 |
| 22 </template> |
| 23 <script src="network_config_select.js"></script> |
| 24 </dom-module> |
OLD | NEW |