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

Side by Side Diff: chrome/browser/resources/managed_user_passphrase_dialog.js

Issue 12218118: Add a passphrase dialog for managed user accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 function load() {
6 $('unlock-passphrase-button').onclick = function(event) {
7 chrome.send('checkPassphrase', [$('passphrase-entry').value]);
8 };
9 $('cancel-passphrase-button').onclick = function(event) {
10 chrome.send('DialogClose');
James Hawkins 2013/02/12 18:57:16 nit: closeDialog
Adrian Kuegel 2013/02/13 10:53:36 Here I am using a function which is defined in chr
James Hawkins 2013/02/13 21:47:26 Personally I would rename it, but feel free to do
Adrian Kuegel 2013/02/14 10:36:12 Ok, then I will add a TODO and do it in a later CL
11 };
12 $('passphrase-entry').oninput = function(event) {
13 $('unlock-passphrase-button').disabled = $('passphrase-entry').value == '';
14 $('incorrect-passphrase-warning').hidden = true;
15 };
16 }
17
18 function passphraseCorrect() {
19 chrome.send('DialogClose', ['true']);
20 }
21
22 function passphraseIncorrect() {
23 $('incorrect-passphrase-warning').hidden = false;
24 $('passphrase-entry').focus();
25 }
26
27 window.addEventListener('DOMContentLoaded', load);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698