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

Unified Diff: chrome/browser/resources/settings/controls/settings_input.html

Issue 2631863002: MD Settings: Use "change" event instead of "blur" for settings-input. (Closed)
Patch Set: fix 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/controls/settings_input.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/controls/settings_input.html
diff --git a/chrome/browser/resources/settings/controls/settings_input.html b/chrome/browser/resources/settings/controls/settings_input.html
index aec34aa8554bf0579fa85b15f3094e8edfd406d1..77254c5bb33460312ebb6aecceaec75338e5471f 100644
--- a/chrome/browser/resources/settings/controls/settings_input.html
+++ b/chrome/browser/resources/settings/controls/settings_input.html
@@ -1,3 +1,4 @@
+<link rel="import" href="chrome://resources/html/assert.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
<link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_behavior.html">
@@ -18,7 +19,7 @@
error-message="[[errorMessage]]" label="[[label]]"
no-label-float="[[noLabelFloat]]" pattern="[[pattern]]"
readonly$="[[readonly]]" required="[[required]]" type="[[type]]"
- on-blur="onBlur_" disabled="[[isDisabled_(disabled, pref)]]"
+ on-change="onChange_" disabled="[[isDisabled_(disabled, pref)]]"
stop-keyboard-event-propagation$="[[stopKeyboardEventPropagation]]"
tabindex$="[[getTabindex_(canTab)]]">
</paper-input>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/controls/settings_input.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698