PluginProbe
Tag Groups is the Advanced Way to Display Your Taxonomy Terms / trunk
Tag Groups is the Advanced Way to Display Your Taxonomy Terms vtrunk
2.2.2 2.2.1 2.2.0 trunk 1.40.0 1.40.2 1.41.0 1.42.1 1.43.0 1.43.1 1.43.10 1.43.10.1 1.43.2 1.43.3 1.43.4 1.43.5 1.43.6 1.43.7 1.43.9 1.44.0 1.44.1 1.44.3 1.44.3.1 2.0.0 2.0.1 All 36 releases
tag-groups / assets / js / frontend.js

frontend.js in Tag Groups is the Advanced Way to Display Your Taxonomy Terms trunk, at assets/js/frontend.js

27 lines 708 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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