summaryrefslogtreecommitdiffstats
path: root/module/web/templates/default/base.html
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-08-14 23:29:04 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-08-14 23:29:04 +0200
commit9500f10ed3e9c18529b1bf91e96fa16f9f926a2f (patch)
tree05e3a9b4b1ffb2a3e9c996d17016678611f531b0 /module/web/templates/default/base.html
parentimproved QueueLayout (diff)
downloadpyload-9500f10ed3e9c18529b1bf91e96fa16f9f926a2f.tar.xz
addjusted animations
Diffstat (limited to 'module/web/templates/default/base.html')
-rw-r--r--module/web/templates/default/base.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html
index 5e1b2089a..5f18634ee 100644
--- a/module/web/templates/default/base.html
+++ b/module/web/templates/default/base.html
@@ -199,7 +199,6 @@
internalCallback(subjects); // call internal callback
})
},
-
show:function (subjects, internalCallback) {
subjects.overlay.fadeIn(250, function () {
internalCallback(subjects); // call internal callback
@@ -209,13 +208,13 @@
animations:{
hide:function (subjects, internalCallback) {
subjects.modal.removeClass('window-container-visible');
- subjects.modal.fadeOut(function () {
+ subjects.modal.fadeOut(250, function () {
internalCallback(subjects); // call internal callback
});
},
show:function (subjects, internalCallback) {
- subjects.modal.fadeIn(function () {
+ subjects.modal.fadeIn(0, function () {
subjects.modal.addClass('window-container-visible');
internalCallback(subjects); // call internal callback
});