aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effects/effect-blind.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/effects/effect-blind.js')
-rw-r--r--ui/effects/effect-blind.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/effects/effect-blind.js b/ui/effects/effect-blind.js
index 76781f4c7..858c6d3fd 100644
--- a/ui/effects/effect-blind.js
+++ b/ui/effects/effect-blind.js
@@ -14,6 +14,8 @@
//>>demos: http://jqueryui.com/effect/
( function( factory ) {
+ "use strict";
+
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
@@ -27,7 +29,8 @@
// Browser globals
factory( jQuery );
}
-}( function( $ ) {
+} )( function( $ ) {
+"use strict";
return $.effects.define( "blind", "hide", function( options, done ) {
var map = {
@@ -67,4 +70,4 @@ return $.effects.define( "blind", "hide", function( options, done ) {
} );
} );
-} ) );
+} );