mirror of
https://github.com/php/web-doc-editor.git
synced 2026-03-26 02:02:10 +01:00
14 lines
329 B
JavaScript
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/"
|
|
}
|
|
}]
|
|
}); |