Mercurial > hg > rr-repo
view sites/all/modules/quicktabs/js/qt_ui_tabs.js @ 13:134d4b2e75f6
updated quicktabs and google analytics modules
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Tue, 29 Oct 2013 13:48:59 +0000 |
parents | b74b41bb73f0 |
children |
line wrap: on
line source
(function ($) { Drupal.behaviors.qt_ui_tabs = { attach: function (context, settings) { $('.quicktabs-ui-wrapper').once('qt-ui-tabs-processed', function() { var id = $(this).attr('id'); var qtKey = 'qt_' + id.substring(id.indexOf('-') +1); if (!settings.quicktabs[qtKey].history) { $(this).tabs(); } else { $(this).tabs({event: 'change'}); Drupal.quicktabsBbq($(this), 'ul.ui-tabs-nav a'); } }); } } })(jQuery);