aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/maintenance
diff options
context:
space:
mode:
authorStas Vilchik <stas-vilchik@users.noreply.github.com>2017-04-20 11:10:13 +0200
committerGitHub <noreply@github.com>2017-04-20 11:10:13 +0200
commitf6e90fdc19e222b3b238f0f5995a8039b7db158e (patch)
tree69c22415cb50a650b046ce4b9a9ac99e57695dfd /server/sonar-web/src/main/js/apps/maintenance
parent36c9fa041018d7eed91f1d22e0c5eda075737ebc (diff)
downloadsonarqube-f6e90fdc19e222b3b238f0f5995a8039b7db158e.tar.gz
sonarqube-f6e90fdc19e222b3b238f0f5995a8039b7db158e.zip
upgrade prettier (#1954)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/maintenance')
-rw-r--r--server/sonar-web/src/main/js/apps/maintenance/main-view.js18
1 files changed, 6 insertions, 12 deletions
diff --git a/server/sonar-web/src/main/js/apps/maintenance/main-view.js b/server/sonar-web/src/main/js/apps/maintenance/main-view.js
index 064ac731f10..68b234721bf 100644
--- a/server/sonar-web/src/main/js/apps/maintenance/main-view.js
+++ b/server/sonar-web/src/main/js/apps/maintenance/main-view.js
@@ -34,12 +34,9 @@ export default Marionette.ItemView.extend({
type: 'GET',
url: window.baseUrl + '/api/system/' + (this.options.setup ? 'db_migration_status' : 'status')
};
- this.pollingInternal = setInterval(
- () => {
- this.refresh();
- },
- 5000
- );
+ this.pollingInternal = setInterval(() => {
+ this.refresh();
+ }, 5000);
this.wasStarting = false;
},
@@ -84,12 +81,9 @@ export default Marionette.ItemView.extend({
},
goHome() {
- setInterval(
- () => {
- window.location = window.baseUrl + '/';
- },
- 2500
- );
+ setInterval(() => {
+ window.location = window.baseUrl + '/';
+ }, 2500);
},
serializeData() {