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

Unified Diff: chrome/browser/resources/inline_login/inline_login.js

Issue 335193002: Show spinner for constrained signin flow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « chrome/browser/resources/inline_login/inline_login.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/inline_login/inline_login.js
diff --git a/chrome/browser/resources/inline_login/inline_login.js b/chrome/browser/resources/inline_login/inline_login.js
index 44dc44bd0327bdbb4f415f410167a197e363596f..ebcc4dcee34c3404911700c2dfee866dfd391b32 100644
--- a/chrome/browser/resources/inline_login/inline_login.js
+++ b/chrome/browser/resources/inline_login/inline_login.js
@@ -56,7 +56,8 @@ cr.define('inline.login', function() {
function loadAuthExtension(data) {
authExtHost.load(data.authMode, data, onAuthCompleted);
$('contents').classList.toggle('loading',
- data.authMode != cr.login.GaiaAuthHost.AuthMode.DESKTOP);
+ data.authMode != cr.login.GaiaAuthHost.AuthMode.DESKTOP ||
xiyuan 2014/06/17 22:58:14 What does this do? Is it turning off the spinner w
guohui 2014/06/18 18:44:04 this is to turn off spinner for full tab signin on
+ data.constrained == '1');
}
/**
« no previous file with comments | « chrome/browser/resources/inline_login/inline_login.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698