Mercurial > hg > rr-repo
comparison sites/all/modules/quicktabs/js/qt_ui_tabs.js @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:67ce89da90df | 2:b74b41bb73f0 |
---|---|
1 (function ($) { | |
2 | |
3 Drupal.behaviors.qt_ui_tabs = { | |
4 attach: function (context, settings) { | |
5 | |
6 $('.quicktabs-ui-wrapper').once('qt-ui-tabs-processed', function() { | |
7 var id = $(this).attr('id'); | |
8 var qtKey = 'qt_' + id.substring(id.indexOf('-') +1); | |
9 if (!settings.quicktabs[qtKey].history) { | |
10 $(this).tabs(); | |
11 } | |
12 else { | |
13 $(this).tabs({event: 'change'}); | |
14 Drupal.quicktabsBbq($(this), 'ul.ui-tabs-nav a'); | |
15 } | |
16 }); | |
17 | |
18 } | |
19 } | |
20 | |
21 })(jQuery); |