Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> | |
| 4 <link rel="import" href="../prefs/prefs.html"> | |
| 5 <link rel="import" href="../settings_shared_css.html"> | |
| 6 | |
| 7 <dom-module id="settings-multidevice-page"> | |
| 8 <template> | |
| 9 <style include="settings-shared"></style> | |
| 10 <div class="settings-box two-line"> | |
| 11 <div id="smsConnectToggleLabel" class="start"> | |
| 12 $i18n{smsConnect} | |
| 13 <div class="secondary"> | |
|
dpapad
2017/07/13 21:26:17
Nit: Can these three lines fit in one line?
Oren Blasberg
2017/07/13 23:07:05
Done.
| |
| 14 $i18n{smsConnectSummary} | |
| 15 </div> | |
| 16 </div> | |
| 17 <paper-toggle-button checked="{{smsConnectToggleState_}}" | |
| 18 aria-labelledby="smsConnectToggleLabel"> | |
| 19 </paper-toggle-button> | |
| 20 </div> | |
| 21 </template> | |
| 22 <script src="multidevice_page.js"></script> | |
| 23 </dom-module> | |
| OLD | NEW |