aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effect-puff.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/effect-puff.js')
-rw-r--r--ui/effect-puff.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/effect-puff.js b/ui/effect-puff.js
index a90174c25..ac3f90a64 100644
--- a/ui/effect-puff.js
+++ b/ui/effect-puff.js
@@ -13,11 +13,11 @@
//>>docs: http://api.jqueryui.com/puff-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",
"./effect-scale"
@@ -27,15 +27,15 @@
// Browser globals
factory( jQuery );
}
-}(function( $ ) {
+}( function( $ ) {
return $.effects.define( "puff", "hide", function( options, done ) {
var newOptions = $.extend( true, {}, options, {
fade: true,
percent: parseInt( options.percent, 10 ) || 150
- });
+ } );
$.effects.effect.scale.call( this, newOptions, done );
-});
+} );
-}));
+} ) );