mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-17 05:18:32 +01:00
20 lines
368 B
PHP
20 lines
368 B
PHP
<?php
|
|
|
|
include '../bootstrap.php';
|
|
|
|
$debugbarRenderer->setBaseUrl('../../src/DebugBar/Resources');
|
|
|
|
$debugbar['messages']->addMessage('I\'m a Deeper Hidden Iframe');
|
|
|
|
render_demo_page(function() {
|
|
?>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$.get('../ajax.php', function(data) {
|
|
//ajax from IFRAME
|
|
});
|
|
});
|
|
</script>
|
|
<?php
|
|
});
|