@@ -40,7 +40,11 @@
// current index
this.current = -1;
// show current content item
- this._show(5);
+ if(this.tabs[0].innerHTML.indexOf('#settings') >= 0){
+ this._show(5);
+ }else{
+ this._show();
+ }
// init events
this._initEvents();
};