1
0
Fork 0
forked from 0x2620/oxjs

fix selecting tab via .select in tab panel

This commit is contained in:
j 2012-01-31 13:23:24 +00:00
commit 319608b5ac
2 changed files with 11 additions and 1 deletions

View file

@ -57,7 +57,7 @@ Ox.TabPanel = function(options, self) {
that.select = function(id) {
if (Ox.getIndexById(self.options.tabs, id) > -1) {
self.$tabs.select(id);
self.$tabs.options({value: id});
}
};