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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen_update.js

Issue 12560002: Change var blah_blah -> blahBlah. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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/chromeos/login/oobe_screen_update.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_update.js b/chrome/browser/resources/chromeos/login/oobe_screen_update.js
index 7a71899425913275799ea1e8be042100e96dfc88..070ee32607f5b2665aa5ce1c0baebf1f20ee249a 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_update.js
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_update.js
@@ -70,7 +70,7 @@ cr.define('oobe', function() {
},
};
- var ellipsis_animation_active = false;
+ var ellipsisAnimationActive = false;
/**
* Updates number of dots in the ellipsis.
@@ -80,7 +80,7 @@ cr.define('oobe', function() {
*/
function updateEllipsisAnimation_(count) {
$('update-checking-ellipsis').textContent = ELLIPSIS[count];
- if (ellipsis_animation_active) {
+ if (ellipsisAnimationActive) {
window.setTimeout(function() {
updateEllipsisAnimation_((count + 1) % ELLIPSIS.length);
}, ELLIPSIS_ANIMATION_TIMEOUT_MS);
@@ -98,7 +98,7 @@ cr.define('oobe', function() {
* Starts animation for tail ellipses in "Checking for update..." label.
*/
UpdateScreen.startEllipsisAnimation = function() {
- ellipsis_animation_active = true;
+ ellipsisAnimationActive = true;
updateEllipsisAnimation_(0);
};
@@ -106,7 +106,7 @@ cr.define('oobe', function() {
* Stops animation for tail ellipses in "Checking for update..." label.
*/
UpdateScreen.stopEllipsisAnimation = function() {
- ellipsis_animation_active = false;
+ ellipsisAnimationActive = false;
};
return {

Powered by Google App Engine
This is Rietveld 408576698