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:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-27 17:32:29 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-07-27 17:32:29 +0300
commitd2a9f619440874078c3f912907563e9d7237b9cb (patch)
tree92363d00e7aea0226984fcc9b6cec4b577727ba0 /js/firstrunwizard.js
parenta3c9bfd5eea404149da3ea49f4203a939c1a96a5 (diff)
adjust buttons, other details
Diffstat (limited to 'js/firstrunwizard.js')
-rw-r--r--js/firstrunwizard.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/js/firstrunwizard.js b/js/firstrunwizard.js
index f8e141c6..b2bb50ce 100644
--- a/js/firstrunwizard.js
+++ b/js/firstrunwizard.js
@@ -1,10 +1,10 @@
function showfirstrunwizard(){
$.colorbox({
- opacity:0.4,
- transition:"elastic",
- speed:100,
- width:"70%",
- height:"70%",
+ opacity: 0.7,
+ transition: 'elastic',
+ speed: 100,
+ width: '80%',
+ height: '80%',
href: OC.filePath('firstrunwizard', '', 'wizard.php'),
onComplete : function(){
if (!SVGSupport()) {
@@ -16,14 +16,14 @@ function showfirstrunwizard(){
url: OC.filePath('firstrunwizard', 'ajax', 'disable.php'),
data: ""
});
- }
+ }
});
}
-$('#showWizard').live('click', function () {
+$('#showWizard').live('click', function () {
showfirstrunwizard();
});
-$('#closeWizard').live('click', function () {
+$('#closeWizard').live('click', function () {
$.colorbox.close();
-}); \ No newline at end of file
+});