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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ncp-web/wizard/JS/wizard.js')
-rw-r--r--ncp-web/wizard/JS/wizard.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/ncp-web/wizard/JS/wizard.js b/ncp-web/wizard/JS/wizard.js
index 464c2ac9..130dd8a0 100644
--- a/ncp-web/wizard/JS/wizard.js
+++ b/ncp-web/wizard/JS/wizard.js
@@ -23,6 +23,8 @@ $(document).ready(function(){
$('#output-wrapper').show();
var textarea = $('#output-box');
textarea[0].scrollTop = textarea[0].scrollHeight;
+ textarea.animate({ width: "40em" });
+ $('#overlay').show();
}
// launch an request for launch action to the backend
@@ -284,7 +286,15 @@ $(document).ready(function(){
// close log output
$('.output-close').on('click', function(e){
if( e.target.id == 'output-wrapper' )
- $('#output-wrapper').hide();
+ {
+ $('#output-box').animate(
+ { width: "0em" },
+ { complete: function() {
+ $('#output-wrapper').hide();
+ $('#overlay').hide();
+ }
+ } );
+ }
} );
// make sure log box starts empty