Commit 1ca7bddb authored by Nick Poulden's avatar Nick Poulden
Browse files

Merge pull request #68 from megous/master

Bugfixes for class index and close tabs
parents 77e1eff2 5747e718
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ Ext.define('Docs.controller.Classes', {
        );

        Ext.getBody().addListener('click', function(event, el) {
            this.handleUrlClick(el.href, event);
            this.handleUrlClick(decodeURI(el.href), event);
        }, this, {
            preventDefault: true,
            delegate: '.docClass'
+2 −0
Original line number Diff line number Diff line
@@ -286,6 +286,7 @@ Ext.define('Docs.view.Tabs', {
        docTab.dom.removed = true;
        if (Ext.isIE) {
            docTab.remove();
            this.createOverflow();
        } else {
            docTab.animate({
                to: { top: 30 },
@@ -297,6 +298,7 @@ Ext.define('Docs.view.Tabs', {
                    afteranimate: function() {
                        docTab.remove();
                        this.shouldResize = true;
                        this.createOverflow();
                    },
                    scope: this
                }