// seems to be expected behavior that the show callback is fired
var onShow = function() {
$(self.element).triggerHandler('tabsshow',
- [self.ui(self.$tabs[o.selected], self.$panels[o.selected])], o.show);
+ [null, self.ui(self.$tabs[o.selected], self.$panels[o.selected])], o.show);
};
// load if remote tab
// callback
$(self.element).triggerHandler('tabsshow',
- [self.ui(clicked, $show[0])], o.show);
+ [null, self.ui(clicked, $show[0])], o.show);
});
}
if (($li.hasClass(o.selectedClass) && !o.unselect)
|| $li.hasClass(o.disabledClass)
|| $(this).hasClass(o.loadingClass)
- || $(self.element).triggerHandler('tabsselect', [self.ui(this, $show[0])], o.select) === false
+ || $(self.element).triggerHandler('tabsselect', [null, self.ui(this, $show[0])], o.select) === false
) {
this.blur();
return false;
// callback
this.element.triggerHandler('tabsadd',
- [this.ui(this.$tabs[index], this.$panels[index])], o.add
+ [null, this.ui(this.$tabs[index], this.$panels[index])], o.add
);
},
remove: function(index) {
// callback
this.element.triggerHandler('tabsremove',
- [this.ui($li.find('a')[0], $panel[0])], o.remove
+ [null, this.ui($li.find('a')[0], $panel[0])], o.remove
);
},
enable: function(index) {
// callback
this.element.triggerHandler('tabsenable',
- [this.ui(this.$tabs[index], this.$panels[index])], o.enable
+ [null, this.ui(this.$tabs[index], this.$panels[index])], o.enable
);
},
// callback
this.element.triggerHandler('tabsdisable',
- [this.ui(this.$tabs[index], this.$panels[index])], o.disable
+ [null, this.ui(this.$tabs[index], this.$panels[index])], o.disable
);
}
},
// callbacks
$(self.element).triggerHandler('tabsload',
- [self.ui(self.$tabs[index], self.$panels[index])], o.load
+ [null, self.ui(self.$tabs[index], self.$panels[index])], o.load
);
o.ajaxOptions.success && o.ajaxOptions.success(r, s);