17 lines
395 B
PHP
17 lines
395 B
PHP
<?php
|
|
// Nothing
|
|
?>
|
|
<script>
|
|
if ( typeof parent != 'undefined' && typeof parent.parent != 'undefined') {
|
|
if ( typeof parent.parent.Ext != 'undefined') {
|
|
var debugPanel = parent.parent.Ext.getCmp('debugPanel');
|
|
|
|
debugPanel.show();
|
|
debugPanel.ownerCt.doLayout();
|
|
debugPanel.expand();
|
|
|
|
parent.parent.propStore.load();
|
|
parent.parent.triggerStore.load();
|
|
}
|
|
}
|
|
</script>
|