diff options
author | Marcel Klehr <mklehr@gmx.net> | 2012-07-14 14:46:02 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2012-07-14 14:46:02 +0200 |
commit | 8ab12ee69e1c255dda51a8dacb8ca5c05ea84bbc (patch) | |
tree | 9e512f54ef8695aaa3839c56dfef473eac4f535b /src/static/js/pad_modals.js | |
parent | 6bda1f8e4dbdebdf2e1cbf38f3380069e2224b2a (diff) | |
download | etherpad-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.js | 4 |
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() |