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

Unified Diff: chrome/browser/resources/settings/device_page/stylus.html

Issue 2736803002: MD Settings: Stop using <option>'s |selected| HTML attribute in bindings. (Closed)
Patch Set: Change selected. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/device_page/stylus.html
diff --git a/chrome/browser/resources/settings/device_page/stylus.html b/chrome/browser/resources/settings/device_page/stylus.html
index acc3c4b06723290ab197d899f3e5ac834ef40cea..b378f8b3caa782600f9b3761f8280088b3f7ff73 100644
--- a/chrome/browser/resources/settings/device_page/stylus.html
+++ b/chrome/browser/resources/settings/device_page/stylus.html
@@ -58,7 +58,7 @@
disabled="[[!prefs.settings.enable_stylus_tools.value]]"
on-change="onSelectedAppChanged_">
<template is="dom-repeat" items="[[appChoices_]]">
- <option value="[[item.value]]" selected$="[[item.preferred]]">
+ <option value="[[item.value]]" selected="[[item.preferred]]">
[[item.name]]
</option>
</template>

Powered by Google App Engine
This is Rietveld 408576698