Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / app / view / HoverMenu.js
diff --git a/docs/app/view/HoverMenu.js b/docs/app/view/HoverMenu.js
deleted file mode 100644 (file)
index 5ce0a86..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * Menu shown by {@link Docs.view.HoverMenuButton}.
- */
-Ext.define('Docs.view.HoverMenu', {
-    extend: 'Ext.view.View',
-
-    componentCls: 'hover-menu',
-    itemSelector: 'div.item',
-    deferEmptyText: false,
-    renderTo: Ext.getBody(),
-
-    /**
-     * @cfg {Number} colHeight  maximum number of items in one column.
-     * When more than that, items are placed into multiple columns.
-     * Defaults to 25 (current maximum length of history).
-     */
-    columnHeight: 25,
-    /**
-     * @cfg {Boolean} showCloseButtons  true to show "x" after each menu item.
-     * Defaults to false.
-     */
-    showCloseButtons: false,
-
-    initComponent: function() {
-        this.tpl = new Ext.XTemplate(
-            '<table>',
-            '<tr>',
-                '<td>',
-                '<tpl for=".">',
-                    '<div class="item">',
-                        '{[this.renderLink(values)]}',
-                        '<tpl if="this.showCloseButtons">',
-                            '<a class="close" href="#" rel="{cls}">x</a>',
-                        '</tpl>',
-                    '</div>',
-                    // Start new column when columnHeight reached
-                    '<tpl if="xindex % this.columnHeight === 0 && xcount &gt; xindex">',
-                        '</td><td>',
-                    '</tpl>',
-                '</tpl>',
-                '</td>',
-            '</tr>',
-            '</table>',
-            {
-                columnHeight: this.columnHeight,
-                showCloseButtons: this.showCloseButtons,
-                renderLink: function(values) {
-                    var url = values.url || values.cls;
-                    var label = values.label || values.cls;
-                    return Ext.String.format('<a href="#/api/{0}" rel="{0}" class="docClass">{1}</a>', url, label);
-                }
-            }
-        );
-
-        this.callParent();
-    }
-});