in themes/kube/static/js/kube.js [1575:1604]
start: function()
{
if (this.opts.live !== false) this.buildLiveTabs();
this.tabsCollection = [];
this.hashesCollection = [];
this.currentHash = [];
this.currentItem = false;
// items
this.$items = this.getItems();
this.$items.each($.proxy(this.loadItems, this));
// tabs
this.$tabs = this.getTabs();
// location hash
this.currentHash = this.getLocationHash();
// close all
this.closeAll();
// active & height
this.setActiveItem();
this.setItemHeight();
// callback
this.callback('init');
},