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

Unified Diff: chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.html

Issue 2444443002: cros: Allow pin keyboard to keep focus without popping up the pin keyboard. (Closed)
Patch Set: Rebased. Created 4 years, 1 month 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/chromeos/quick_unlock/pin_keyboard.html
diff --git a/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.html b/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.html
index 31d05169cc41ef97bcc5895ab82c813d9f2a839d..64f6453376d4e841f01a86220ef22b60be3bbf38 100644
--- a/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.html
+++ b/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.html
@@ -165,16 +165,14 @@
}
</style>
- <div id="root" on-keypress="onKeyPress_" on-keydown="onKeyDown_">
+ <div id="root">
<div id="container-constrained-width">
<div class="row first-row">
- <input id="pin-input" type="[[getInputType_(enablePassword)]]"
+ <input id="pin-input" type="password"
is-input-rtl$="[[isInputRtl_(value)]]"
has-content$="[[hasInput_(value)]]"
placeholder="[[getInputPlaceholder_(enablePassword)]]"
- value="{{value::input}}"
- on-keydown="onInputKeyDown_"
- hidden=[[hideInput]]>
+ on-keydown="onInputKeyDown_">
</input>
</div>
<hr>

Powered by Google App Engine
This is Rietveld 408576698