Sha256: 6112ab9af96d4f86ddbc6164c00786423540717cf8b5ca9794f82d2abe07566c
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
Ext.define("Compass.ErpApp.Desktop.Applications.CompassAeConsole", { extend: "Ext.ux.desktop.Module", id: 'compass_console-win', init: function () { this.launcher = { text: 'Compass Console', iconCls: 'icon-console', handler: this.createWindow, scope: this }; }, createWindow: function () { var desktop = this.app.getDesktop(); var win = desktop.getWindow('console'); if (!win) { win = desktop.createWindow({ id: 'console', title: 'Compass Console', width: 800, height: 600, iconCls: 'icon-console', shim: false, animCollapse: false, resizable: true, constrainHeader: true, layout: 'fit', items: [ { xtype: 'compass_ae_console_panel', header: false } ] }); } win.show(); } });
Version data entries
3 entries across 3 versions & 1 rubygems