OLD | NEW |
(Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h
tml"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> |
| 4 <link rel="import" href="../settings_shared_css.html"> |
| 5 |
| 6 <dom-module id="network-config-input"> |
| 7 <template> |
| 8 <style include="settings-shared"> |
| 9 </style> |
| 10 |
| 11 <div class="settings-box"> |
| 12 <div id="label" class="start">[[label]]</div> |
| 13 <paper-input-container no-label-float> |
| 14 <input is="iron-input" value="{{value::change}}" |
| 15 disabled="[[disabled]]" aria-labelledby="label"> |
| 16 </paper-input-container> |
| 17 </div> |
| 18 </template> |
| 19 <script src="network_config_input.js"></script> |
| 20 </dom-module> |
OLD | NEW |