aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.widget.js
diff options
context:
space:
mode:
authorjzaefferer <joern.zaefferer@gmail.com>2010-07-20 13:58:10 +0200
committerjzaefferer <joern.zaefferer@gmail.com>2010-07-20 13:58:10 +0200
commit88ec776178b62d21ac6e218946800b2d0c2b0b78 (patch)
tree32373be01cb84e71cfa698f78ac56d6d400632bc /ui/jquery.ui.widget.js
parent4be0942af0d0a73541148899fbb2e0c406795c79 (diff)
parent5debdb08d7702e9c04b4efa883c68d350576d710 (diff)
downloadjquery-ui-88ec776178b62d21ac6e218946800b2d0c2b0b78.tar.gz
jquery-ui-88ec776178b62d21ac6e218946800b2d0c2b0b78.zip
Merge remote branch 'origin/master'
Diffstat (limited to 'ui/jquery.ui.widget.js')
-rw-r--r--ui/jquery.ui.widget.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js
index 1014c607a..265489866 100644
--- a/ui/jquery.ui.widget.js
+++ b/ui/jquery.ui.widget.js
@@ -57,7 +57,7 @@ $.widget = function( name, base, prototype ) {
// basePrototype[ key ] = $.extend( {}, val );
// }
// });
- basePrototype.options = $.extend( {}, basePrototype.options );
+ basePrototype.options = $.extend( true, {}, basePrototype.options );
$[ namespace ][ name ].prototype = $.extend( true, basePrototype, {
namespace: namespace,
widgetName: name,