You are here

web_widgets_inline_async_wrapper.tpl.php in Web Widgets 7

Inline embedding means that we include the views output into a javascript file

File

inline_async/web_widgets_inline_async_wrapper.tpl.php
View source
<?php

/**
 * @file
 * Inline embedding means that we include the views output into a javascript file
 */
?>
var id = '<?php

print $wid;
?>';
document.getElementById(id).innerHTML = <?php

print $js_string;
?>;