Sha256: 6b22419ae00a66434129d71d5ac0931ddbbe85fd34284ee83e5b5c4197429e28
Contents?: true
Size: 640 Bytes
Versions: 1
Compression:
Stored size: 640 Bytes
Contents
Ext.ns('Rwiki'); Rwiki.AboutDialog = Ext.extend(Ext.Window, { constructor: function() { var self = this; Ext.apply(this, { applyTo: 'about-dialog', width: 400, height: 200, plain: true, modal: true, closeAction: 'hide', items: new Ext.TabPanel({ applyTo: 'hello-tabs', autoTabs: true, activeTab: 0, deferredRender: false, border: false }), buttons: [{ text: 'Close', handler: function() { self.hide(); } }] }); Rwiki.AboutDialog.superclass.constructor.apply(this, arguments); } });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rwiki-0.2.5 | public/javascripts/Rwiki/AboutDialog.js |