Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="/controls/settings_checkbox.html"> | |
| 3 <link rel="import" href="/settings_shared_css.html"> | |
| 4 | |
| 5 <dom-module id="settings-note"> | |
| 6 <template> | |
| 7 <style include="settings-shared"> | |
| 8 a { | |
| 9 color: rgb(66, 133, 244); | |
| 10 text-decoration: none; | |
| 11 } | |
|
stevenjb
2016/07/26 23:21:39
Not needed, see below.
jdufault
2016/07/27 20:55:02
Done.
| |
| 12 </style> | |
| 13 | |
| 14 <div class="settings-box"> | |
| 15 <!-- TODO(jdufault): i18n --> | |
| 16 <settings-checkbox | |
| 17 pref="{{prefs.settings.launch_note_app_on_eject_event}}" | |
| 18 label="Launch note-taking app when removing stylus"> | |
| 19 </settings-checkbox> | |
| 20 </div> | |
| 21 <div class="settings-box"> | |
| 22 <!-- TODO(jdufault): This should launch an intent (using the | |
| 23 enable-intent-picker flag) that opens up the play store to a curated | |
| 24 list of apps. --> | |
| 25 <a href="https://chrome.google.com/webstore/category/apps" | |
| 26 target="_blank">Find note apps</a> | |
|
stevenjb
2016/07/26 23:21:39
Add is="action-link" which will pick up styling, s
jdufault
2016/07/27 20:55:02
Done.
| |
| 27 </div> | |
| 28 | |
| 29 <!-- Draw final horizontal rule. --> | |
| 30 <div class="settings-box"></div> | |
|
stevenjb
2016/07/26 23:21:39
This shouldn't be needed...
jdufault
2016/07/27 20:55:01
I'm fine having it not be there, but the mocks inc
stevenjb
2016/07/27 22:29:42
I added a comment in folio. That is inconsistent w
jdufault
2016/07/28 17:54:40
Sounds good, thanks!
| |
| 31 | |
| 32 </template> | |
| 33 <script src="note.js"></script> | |
| 34 </dom-module> | |
| OLD | NEW |