[pad_modals] remove unused variables. for the hide/show functions jquery's default variables are used everywhere

This commit is contained in:
webzwo0i 2013-12-08 17:35:11 +01:00
parent 9400425b1e
commit 77cf2aafac

View file

@ -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();
}
};