Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-07-22 19:03:45 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-07-22 19:03:45 +0400
commit45dc8132278756252e27bfdcf25a8270f49d5b09 (patch)
treef698f2f0be6fa389f59a22237b9f174b35b8fa46 /js/activate.js
parente911ca77c76c07434431bf46e2814e79705dc6c2 (diff)
don't show firstrunwizard when upgrade is in progress, fixes core/issues/3180
Diffstat (limited to 'js/activate.js')
-rw-r--r--js/activate.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/activate.js b/js/activate.js
index f6fd6df2..45d44001 100644
--- a/js/activate.js
+++ b/js/activate.js
@@ -1,3 +1,6 @@
jQuery(document).ready(function () {
- showfirstrunwizard();
+ //do not show when upgrade is in progress
+ if (jQuery('#upgrade').length === 0) {
+ showfirstrunwizard();
+ }
});