| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="/controls/settings_toggle_button.html"> | 3 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 4 <link rel="import" href="/settings_shared_css.html"> | 4 <link rel="import" href="../settings_shared_css.html"> |
| 5 | 5 |
| 6 <dom-module id="settings-stylus"> | 6 <dom-module id="settings-stylus"> |
| 7 <template> | 7 <template> |
| 8 <style include="settings-shared"></style> | 8 <style include="settings-shared"></style> |
| 9 | 9 |
| 10 <div class="settings-box"> | 10 <div class="settings-box"> |
| 11 <settings-toggle-button class="start" | 11 <settings-toggle-button class="start" |
| 12 pref="{{prefs.settings.enable_stylus_tools}}" | 12 pref="{{prefs.settings.enable_stylus_tools}}" |
| 13 label="$i18n{stylusEnableStylusTools}"> | 13 label="$i18n{stylusEnableStylusTools}"> |
| 14 </settings-toggle-button> | 14 </settings-toggle-button> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 30 list of apps. --> | 30 list of apps. --> |
| 31 <a target="_blank" | 31 <a target="_blank" |
| 32 href="https://play.google.com/store/apps/collection/promotion_30023cb_s
tylus_apps"> | 32 href="https://play.google.com/store/apps/collection/promotion_30023cb_s
tylus_apps"> |
| 33 $i18n{stylusFindMoreApps} | 33 $i18n{stylusFindMoreApps} |
| 34 </a> | 34 </a> |
| 35 </div> | 35 </div> |
| 36 | 36 |
| 37 </template> | 37 </template> |
| 38 <script src="stylus.js"></script> | 38 <script src="stylus.js"></script> |
| 39 </dom-module> | 39 </dom-module> |
| OLD | NEW |