[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
|
@ -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();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue