summaryrefslogtreecommitdiff
path: root/src/static/js/pad_modals.js
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2012-07-14 14:46:02 +0200
committerMarcel Klehr <mklehr@gmx.net>2012-07-14 14:46:02 +0200
commit8ab12ee69e1c255dda51a8dacb8ca5c05ea84bbc (patch)
tree9e512f54ef8695aaa3839c56dfef473eac4f535b /src/static/js/pad_modals.js
parent6bda1f8e4dbdebdf2e1cbf38f3380069e2224b2a (diff)
downloadetherpad-lite-8ab12ee69e1c255dda51a8dacb8ca5c05ea84bbc.zip
Only disable toolbar.
Make content available and allow scrolling
Diffstat (limited to 'src/static/js/pad_modals.js')
-rw-r--r--src/static/js/pad_modals.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/static/js/pad_modals.js b/src/static/js/pad_modals.js
index 720fdfc1..174779df 100644
--- a/src/static/js/pad_modals.js
+++ b/src/static/js/pad_modals.js
@@ -40,7 +40,7 @@ var padmodals = (function()
});
},
showOverlay: function(duration) {
- $("#modaloverlay").show().css(
+ $("#overlay").show().css(
{
'opacity': 0
}).animate(
@@ -49,7 +49,7 @@ var padmodals = (function()
}, duration);
},
hideOverlay: function(duration) {
- $("#modaloverlay").animate(
+ $("#overlay").animate(
{
'opacity': 0
}, duration, function()