diff options
Diffstat (limited to 'ui/effects/effect-slide.js')
-rw-r--r-- | ui/effects/effect-slide.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/effects/effect-slide.js b/ui/effects/effect-slide.js index 3ba7a2edc..52244219a 100644 --- a/ui/effects/effect-slide.js +++ b/ui/effects/effect-slide.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( "slide", "show", function( options, done ) { var startClip, startRef, @@ -73,4 +76,4 @@ return $.effects.define( "slide", "show", function( options, done ) { } ); } ); -} ) ); +} ); |