Commit 29db0586 authored by Nick Poulden's avatar Nick Poulden
Browse files

Auto open first static tab instead of class index

parent 2f70679e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -68,8 +68,9 @@ Ext.define("Docs.History", {
            if (Docs.App.getController('Welcome').isActive()) {
                Docs.App.getController('Welcome').loadIndex(true);
            }
            else {
                Docs.App.getController('Classes').loadIndex(true);
            else if (!this.noRepeatNav) {
                this.noRepeatNav = true; // Prevent infinite nav loop
                this.navigate(Ext.getCmp('doctabs').staticTabs[0].href);
            }
        }
    },