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

clemens.tolboom’s picture