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

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

Issue 2944703004: Run clang-format on .js files in c/b/r/chromeos (Closed)
Patch Set: Created 3 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
Index: chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
diff --git a/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js b/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
index 7a0b6c76ae58ea65def609866430ff9805141396..fd554e8d619c1f4503b3afa1e8123f1cfae2cddd 100644
--- a/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
+++ b/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
@@ -21,13 +21,10 @@ login.createScreen('AppLaunchSplashScreen', 'app-launch-splash', function() {
});
var networkContainer = $('splash-config-network-container');
- networkContainer.addEventListener(
- 'transitionend',
- function(e) {
- if (this.classList.contains('faded'))
- $('splash-config-network').hidden = true;
- }.bind(networkContainer)
- );
+ networkContainer.addEventListener('transitionend', function(e) {
+ if (this.classList.contains('faded'))
+ $('splash-config-network').hidden = true;
+ }.bind(networkContainer));
// Ensure the transitionend event gets called after a wait time.
// The wait time should be inline with the transition duration time
@@ -55,8 +52,7 @@ login.createScreen('AppLaunchSplashScreen', 'app-launch-splash', function() {
/**
* Event handler that is invoked just before the frame is hidden.
*/
- onBeforeHide: function() {
- },
+ onBeforeHide: function() {},
/**
* Toggles visibility of the network configuration option.

Powered by Google App Engine
This is Rietveld 408576698