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

Tooltips for expandAll/collapseAll buttons.

parent 33b3edce
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ Ext.define('Docs.OverviewToolbar', {
            {
                xtype: 'button',
                iconCls: 'expandAllMembers',
                tooltip: "Expand all",
                handler: function() {
                    Ext.Array.forEach(Ext.query('.side.expandable'), function(el) {
                        Ext.get(el).parent().addCls('open');
@@ -62,6 +63,7 @@ Ext.define('Docs.OverviewToolbar', {
            {
                xtype: 'button',
                iconCls: 'collapseAllMembers',
                tooltip: "Collapse all",
                handler: function() {
                    Ext.Array.forEach(Ext.query('.side.expandable'), function(el) {
                        Ext.get(el).parent().removeCls('open');
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ Ext.onReady(function() {
        }
    };

    Ext.tip.QuickTipManager.init();
    Docs.History.init();

    Ext.create('Docs.ClassTree', {