Files
web-doc-editor/js/view/main/tabs/bug.js
Alexander Moskaliov 88962f67cf add some menu handlers
2012-05-22 12:45:53 +04:00

14 lines
329 B
JavaScript

Ext.define('phpdoe.view.main.tabs.bug', {
extend : 'Ext.panel.Panel',
id: 'tab-report-bug',
iconCls : 'iconBugs',
closable : true,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "http://bugs.php.net/"
}
}]
});