Advertisement
Juc1

Untitled

Nov 19th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. function THEMENAME_preprocess_html(&$variables){
  2. // This function looks for node 1 and only adds the javascript for this.
  3. // However it can be extended in different ways if required
  4.     drupal_add_library('system', 'ui.tabs');
  5.     drupal_add_js('jQuery(document).ready(function(){
  6.                jQuery("#tabs").tabs({event: "mouseover"});
  7.                jQuery("#tabs").tabs().addClass("ui-tabs-vertical ui-helper-clearfix");
  8.                jQuery("#tabs li").removeClass("ui-corner-top").addClass("ui-corner-left");
  9.            });',
  10.         'inline');
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement