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

Unified Diff: chrome/browser/resources/settings/internet_page/network_property_list.html

Issue 2624213008: MD Settings: Update some ChromeOS inputs to on-change (Closed)
Patch Set: fix issue Created 3 years, 11 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/internet_page/network_property_list.html
diff --git a/chrome/browser/resources/settings/internet_page/network_property_list.html b/chrome/browser/resources/settings/internet_page/network_property_list.html
index c567a89a46a3b8bcc46a7fb315532e59e7154fdd..8dbe334241a9de02bf33ee5575be1324ffd65245 100644
--- a/chrome/browser/resources/settings/internet_page/network_property_list.html
+++ b/chrome/browser/resources/settings/internet_page/network_property_list.html
@@ -49,7 +49,7 @@
<paper-input-container no-label-float>
<input id="[[item]]" is="iron-input"
value="[[getPropertyValue_(item, prefix, propertyDict)]]"
- on-blur="onValueChange_">
+ on-change="onValueChange_">
</paper-input-container>
</template>
<!-- Editable Password property value -->
@@ -58,7 +58,7 @@
<paper-input-container no-label-float>
<input id="[[item]]" is="iron-input" type="password"
value="[[getPropertyValue_(item, prefix, propertyDict)]]"
- on-blur="onValueChange_">
+ on-change="onValueChange_">
</paper-input-container>
</template>
<!-- TODO(stevenjb): Support other types. -->

Powered by Google App Engine
This is Rietveld 408576698