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

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_config_select.html

Issue 2848683003: MD Settings: Add settings-internet-config (WiFi only, no certs) (Closed)
Patch Set: Feedback, add network-confg-input + select Created 3 years, 7 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698