diff options
author | John McLear <john@mclear.co.uk> | 2013-03-16 17:50:53 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-03-16 17:50:53 +0000 |
commit | 69a4ab76cfb4de059d3c5bc34f3d803bac718899 (patch) | |
tree | aaaf2e26be6c9063c4f751a70bc40851ad830eeb | |
parent | a31605216fe72b8ae213394385aecee0bfb24ff2 (diff) | |
download | etherpad-lite-69a4ab76cfb4de059d3c5bc34f3d803bac718899.zip |
hide modal once reconnect is good
-rw-r--r-- | src/static/js/pad_modals.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/pad_modals.js b/src/static/js/pad_modals.js index 0292e048..0013e899 100644 --- a/src/static/js/pad_modals.js +++ b/src/static/js/pad_modals.js @@ -49,7 +49,7 @@ var padmodals = (function() }, duration); }, hideOverlay: function(duration) { - $("#overlay").animate( + $("#overlay").hide().css( { 'opacity': 0 }, duration, function() |