diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-07-20 13:58:10 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-07-20 13:58:10 +0200 |
commit | 88ec776178b62d21ac6e218946800b2d0c2b0b78 (patch) | |
tree | 32373be01cb84e71cfa698f78ac56d6d400632bc /ui/jquery.ui.widget.js | |
parent | 4be0942af0d0a73541148899fbb2e0c406795c79 (diff) | |
parent | 5debdb08d7702e9c04b4efa883c68d350576d710 (diff) | |
download | jquery-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.js | 2 |
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, |