make the eslint nanny happy

This commit is contained in:
Andrew Bauer 2020-08-03 11:47:31 -05:00
parent ce810320a2
commit a3e6fe5522
1 changed files with 4 additions and 4 deletions

View File

@ -140,17 +140,17 @@ if ( $css != 'base' )
var mootoolsLoaded = (typeof MooTools != 'undefined');
if (bootstrapLoaded && mootoolsLoaded) {
Element.implement({
hide: function () {
hide: function() {
return this;
},
show: function (v) {
show: function(v) {
return this;
},
slide: function (v) {
slide: function(v) {
return this;
}
});
}
}
jQuery("#flip").click(function() {
jQuery("#panel").slideToggle("slow");
var flip = jQuery("#flip");