You are here

web_widgets_inline_wrapper.tpl.php in Web Widgets 6

Same filename and directory in other branches
  1. 7 inline/web_widgets_inline_wrapper.tpl.php

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

File

inline/web_widgets_inline_wrapper.tpl.php
View source
<?php

/**
 * @file
 * Inline embedding means that we include the views output into a javascript file
 */
?>
window.onload = function() {
  document.getElementById(widgetContext['widgetid']).innerHTML = <?php

print $js_string;
?>;
};