[pad_modals] remove unused variables. for the hide/show functions jquery's default variables are used everywhere
This commit is contained in:
parent
9400425b1e
commit
77cf2aafac
1 changed files with 2 additions and 3 deletions
|
@ -20,7 +20,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var padutils = require('./pad_utils').padutils;
|
|
||||||
var padeditbar = require('./pad_editbar').padeditbar;
|
var padeditbar = require('./pad_editbar').padeditbar;
|
||||||
|
|
||||||
var padmodals = (function()
|
var padmodals = (function()
|
||||||
|
@ -39,10 +38,10 @@ var padmodals = (function()
|
||||||
padeditbar.toggleDropDown("connectivity");
|
padeditbar.toggleDropDown("connectivity");
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
showOverlay: function(duration) {
|
showOverlay: function() {
|
||||||
$("#overlay").show();
|
$("#overlay").show();
|
||||||
},
|
},
|
||||||
hideOverlay: function(duration) {
|
hideOverlay: function() {
|
||||||
$("#overlay").hide();
|
$("#overlay").hide();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue