equals($('#zIndexAutoNoParent').zIndex(), 0, 'zIndex never explicitly set in hierarchy');
});
+test('widget factory, merge multiple option arguments', function() {
+ expect(1);
+ $.widget("ui.widgetTest", {
+ _init: function() {
+ same(this.options, {
+ disabled: false,
+ option1: "value1",
+ option2: "value2",
+ option3: "value3"
+ });
+ }
+ });
+ $("#main > :first").widgetTest({
+ option1: "valuex",
+ option2: "valuex",
+ option3: "value3"
+ }, {
+ option1: "value1",
+ option2: "value2"
+ });
+});
+
})(jQuery);
args = Array.prototype.slice.call(arguments, 1),
returnValue = this;
+ // allow multiple hashes to be passed on init
+ options = !isMethodCall && args.length
+ ? $.extend.apply(null, arguments)
+ : options;
+
// prevent calls to internal methods
if (isMethodCall && options.substring(0, 1) == '_') {
return returnValue;