diff options
Diffstat (limited to 'ui/effects/effect-highlight.js')
-rw-r--r-- | ui/effects/effect-highlight.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/effects/effect-highlight.js b/ui/effects/effect-highlight.js index 2ab587939..8d852de3d 100644 --- a/ui/effects/effect-highlight.js +++ b/ui/effects/effect-highlight.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( "highlight", "show", function( options, done ) { var element = $( this ), @@ -54,4 +57,4 @@ return $.effects.define( "highlight", "show", function( options, done ) { } ); } ); -} ) ); +} ); |