diff options
Diffstat (limited to 'ui/effect-clip.js')
-rw-r--r-- | ui/effect-clip.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/effect-clip.js b/ui/effect-clip.js index 534df6028..4eb24eb88 100644 --- a/ui/effect-clip.js +++ b/ui/effect-clip.js @@ -13,11 +13,11 @@ //>>docs: http://api.jqueryui.com/clip-effect/ //>>demos: http://jqueryui.com/effect/ -(function( factory ) { +( function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. - define([ + define( [ "jquery", "./effect" ], factory ); @@ -26,7 +26,7 @@ // Browser globals factory( jQuery ); } -}(function( $ ) { +}( function( $ ) { return $.effects.define( "clip", "hide", function( options, done ) { var start, @@ -57,8 +57,8 @@ return $.effects.define( "clip", "hide", function( options, done ) { duration: options.duration, easing: options.easing, complete: done - }); + } ); -}); +} ); -})); +} ) ); |