mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 17:08:32 -05:00
Allows us to get to the ready state sooner by not waiting for iframes to load. If that causes backcompat pain, use `jQuery.quickReady = false` as prescribed by your developer.
6 lines
146 B
PHP
6 lines
146 B
PHP
<?php
|
|
sleep((int)$_GET['sleep']);
|
|
?>
|
|
<script type="text/javascript">
|
|
window.parent.parent.iframeCallback(<?php echo $_GET['return'];?>);
|
|
</script>
|