fix options clone (#2967)

This commit is contained in:
Aaron Eisenberger 2008-06-26 14:24:36 +00:00
parent 14561e4c5e
commit 1c97a16dd3

View File

@ -20,7 +20,7 @@ $.effects.puff = function(o) {
var el = $(this);
// Set options
var options = $.extend(true, {}, o);
var options = $.extend(true, {}, o.options);
var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode
var percent = parseInt(o.options.percent) || 150; // Set default puff percent
options.fade = true; // It's not a puff if it doesn't fade! :)
@ -50,7 +50,7 @@ $.effects.scale = function(o) {
var el = $(this);
// Set options
var options = $.extend(true, {}, o);
var options = $.extend(true, {}, o.options);
var mode = $.effects.setMode(el, o.options.mode || 'effect'); // Set Mode
var percent = parseInt(o.options.percent) || (parseInt(o.options.percent) == 0 ? 0 : (mode == 'hide' ? 0 : 100)); // Set default scaling percent
var direction = o.options.direction || 'both'; // Set default axis