summaryrefslogtreecommitdiff
path: root/src/static/js/pad_modals.js
diff options
context:
space:
mode:
authorwebzwo0i <webzwo0i@c3d2.de>2013-12-08 17:35:11 +0100
committerwebzwo0i <webzwo0i@c3d2.de>2013-12-08 17:35:11 +0100
commit77cf2aafacf859b053ee2d704f6b2ce0d4df5a71 (patch)
treeb09220ac7542318dae43de189d862f4e2e3dc5c8 /src/static/js/pad_modals.js
parent9400425b1eef135cc671c866da39c116d7e82b17 (diff)
downloadetherpad-lite-77cf2aafacf859b053ee2d704f6b2ce0d4df5a71.zip
[pad_modals] remove unused variables. for the hide/show functions jquery's default variables are used everywhere
Diffstat (limited to 'src/static/js/pad_modals.js')
-rw-r--r--src/static/js/pad_modals.js5
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();
}
};