aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects/effect-explode.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/effects/effect-explode.js')
-rw-r--r--ui/effects/effect-explode.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/ui/effects/effect-explode.js b/ui/effects/effect-explode.js
index d5aca490f..2b8a000e6 100644
--- a/ui/effects/effect-explode.js
+++ b/ui/effects/effect-explode.js
@@ -9,13 +9,15 @@
//>>label: Explode Effect
//>>group: Effects
-// jscs:disable maximumLineLength
+/* eslint-disable max-len */
//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
-// jscs:enable maximumLineLength
+/* eslint-enable max-len */
//>>docs: http://api.jqueryui.com/explode-effect/
//>>demos: http://jqueryui.com/effect/
( function( factory ) {
+ "use strict";
+
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
@@ -29,7 +31,8 @@
// Browser globals
factory( jQuery );
}
-}( function( $ ) {
+} )( function( $ ) {
+"use strict";
return $.effects.define( "explode", "hide", function( options, done ) {
@@ -108,4 +111,4 @@ return $.effects.define( "explode", "hide", function( options, done ) {
}
} );
-} ) );
+} );