| 1 |
/*! |
| 2 |
* Last modified: 2021/10/27 17:52:13 |
| 3 |
* Part of the WordPress plugin Tag Groups |
| 4 |
* Plugin URI: https://chattymango.com/tag-groups/ |
| 5 |
* Author: Christoph Amthor |
| 6 |
* License: GNU GENERAL PUBLIC LICENSE, Version 3 |
| 7 |
*/ |
| 8 |
|
| 9 |
var TagGroupsBase = { |
| 10 |
accordion: function (id, options, delay) { |
| 11 |
if (delay) { |
| 12 |
options['create'] = function (event) { |
| 13 |
jQuery(event.target).removeClass('tag-groups-cloud-hidden'); |
| 14 |
}; |
| 15 |
} |
| 16 |
jQuery('#' + id).accordion(options); |
| 17 |
}, |
| 18 |
tabs: function (id, options, delay) { |
| 19 |
if (delay) { |
| 20 |
options['create'] = function (event) { |
| 21 |
jQuery(event.target).removeClass('tag-groups-cloud-hidden'); |
| 22 |
}; |
| 23 |
} |
| 24 |
jQuery('#' + id).tabs(options); |
| 25 |
}, |
| 26 |
}; |
| 27 |
|