Skip to content

Commit

Permalink
Widget: Deep extend options when creating a new plugin. Fixes #5830 -…
Browse files Browse the repository at this point in the history
… Widget: Using inheritance overwrites the base classes options.
  • Loading branch information
scottgonzalez committed Jul 15, 2010
1 parent 06f721b commit f24bc0f
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/unit/widget/widget.html
Expand Up @@ -13,7 +13,8 @@
<script type="text/javascript" src="../../jquery.simulate.js"></script>
<script type="text/javascript" src="../testsuite.js"></script>

<script type="text/javascript" src="widget.js"></script>
<script type="text/javascript" src="widget_core.js"></script>
<script type="text/javascript" src="widget_tickets.js"></script>
</head>
<body>

Expand Down
File renamed without changes.
46 changes: 46 additions & 0 deletions tests/unit/widget/widget_tickets.js
@@ -0,0 +1,46 @@
/*
* widget unit tests
*/
(function($) {

module('widget: tickets');

test('#5830 - Widget: Using inheritance overwrites the base classes options', function() {
$.widget( "ui.testWidgetBase", {
options: {
obj: {
key1: "foo",
key2: "bar"
},
arr: [ "testing" ]
}
});

$.widget( "ui.testWidgetExtension", $.ui.testWidgetBase, {
options: {
obj: {
key1: "baz"
},
arr: [ "alpha", "beta" ]
}
});

same( $.ui.testWidgetBase.prototype.options.obj, {
key1: "foo",
key2: "bar"
}, "base class option object not overridden");
same( $.ui.testWidgetBase.prototype.options.arr, [ "testing" ],
"base class option array not overridden");

same( $.ui.testWidgetExtension.prototype.options.obj, {
key1: "baz",
key2: "bar"
}, "extension class option object extends base");
same( $.ui.testWidgetExtension.prototype.options.arr, [ "alpha", "beta" ],
"extension class option array overwrites base");

delete $.ui.testWidgetBase;
delete $.ui.testWidgetExtension;
});

})(jQuery);
2 changes: 1 addition & 1 deletion ui/jquery.ui.widget.js
Expand Up @@ -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,
Expand Down

0 comments on commit f24bc0f

Please sign in to comment.