Commit a8742699 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix regression in Search controller.

parent 56a91d6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ Ext.define('Docs.controller.Search', {
        if (record.get("type") !== 'cls') {
            name += '-' + record.get("type") + '-' + record.get("member");
        }
        Docs.App.getController('Classes').loadClass("/api/"+name);
        Docs.App.getController('Classes').loadClass("#!/api/"+name);
        this.getDropdown().hide();
    },

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ Ext.define('Docs.view.cls.Tree', {
     */

    initComponent: function() {
        var tree = new Docs.view.cls.PackageLogic({classes: this.data, showPrivateClasses: true});
        var tree = new Docs.view.cls.InheritanceLogic({classes: this.data, showPrivateClasses: true});
        this.root = tree.create();
        this.callParent();
    }