Active
Project:
Web Widgets
Version:
6.x-1.4
Component:
Miscellaneous
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
4 Feb 2011 at 10:51 UTC
Updated:
10 Nov 2012 at 09:17 UTC
Hi,
If you have web_widgets and also jquery_update, it will not load the jquery_update scripts.
I've fixed that by using this code in the theme:
function MYTHEME_preprocess_web_widgets_iframe_wrapper(&$vars) {
$vars['head'] = drupal_get_html_head();
$vars['styles'] = drupal_get_css();
$vars['scripts'] = drupal_get_js();
if (function_exists('jquery_update_preprocess_page')) {
jquery_update_preprocess_page($vars);
}
}
Comments
Comment #1
clemens.tolboomSimilar to 7.x #1666756: Not loading css or js for remote views