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,13 +140,13 @@ if ( $css != 'base' )
var mootoolsLoaded = (typeof MooTools != 'undefined'); var mootoolsLoaded = (typeof MooTools != 'undefined');
if (bootstrapLoaded && mootoolsLoaded) { if (bootstrapLoaded && mootoolsLoaded) {
Element.implement({ Element.implement({
hide: function () { hide: function() {
return this; return this;
}, },
show: function (v) { show: function(v) {
return this; return this;
}, },
slide: function (v) { slide: function(v) {
return this; return this;
} }
}); });