Commit 513ba520 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Expand guides/videos/examples trees by default.

Previusly only the guides tree was expanded, which looked strange (like
a bug) compared to others.
parent cf3ea834
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ Ext.define('Docs.view.GroupTree', {
        Ext.Array.each(this.data, function(group) {
            this.root.children.push({
                text: group.title,
                expanded: this.expandRootChildren,
                expanded: true,
                children: Ext.Array.map(group.items, this.convert),
                iconCls: 'icon-pkg'
            });
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ Ext.define('Docs.view.TreeContainer', {
            {
                xtype: 'grouptree',
                id: 'guidetree',
                expandRootChildren: true,
                data: Docs.data.guides,
                convert: function(guide) {
                    return {