diff options
author | webzwo0i <webzwo0i@c3d2.de> | 2013-12-08 17:35:11 +0100 |
---|---|---|
committer | webzwo0i <webzwo0i@c3d2.de> | 2013-12-08 17:35:11 +0100 |
commit | 77cf2aafacf859b053ee2d704f6b2ce0d4df5a71 (patch) | |
tree | b09220ac7542318dae43de189d862f4e2e3dc5c8 | |
parent | 9400425b1eef135cc671c866da39c116d7e82b17 (diff) | |
download | etherpad-lite-77cf2aafacf859b053ee2d704f6b2ce0d4df5a71.zip |
[pad_modals] remove unused variables. for the hide/show functions jquery's default variables are used everywhere
-rw-r--r-- | src/static/js/pad_modals.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/static/js/pad_modals.js b/src/static/js/pad_modals.js index 39094a7e..67b03662 100644 --- a/src/static/js/pad_modals.js +++ b/src/static/js/pad_modals.js @@ -20,7 +20,6 @@ * limitations under the License. */ -var padutils = require('./pad_utils').padutils; var padeditbar = require('./pad_editbar').padeditbar; var padmodals = (function() @@ -39,10 +38,10 @@ var padmodals = (function() padeditbar.toggleDropDown("connectivity"); }); }, - showOverlay: function(duration) { + showOverlay: function() { $("#overlay").show(); }, - hideOverlay: function(duration) { + hideOverlay: function() { $("#overlay").hide(); } }; |