commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / webform_civicrm / js / webform_tab.js
1 jQuery(function($) {
2 'use strict';
3 // Highlight the CiviCRM tab when hovering the link to it
4 function toggleTab() {
5 $('a[href$=civicrm]', '.tabs.primary').parent().toggleClass('active');
6 }
7 $('.webform-civicrm-tab-link').hover(toggleTab, toggleTab);
8 });