PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.3.0
Forumax – AI Powered Advanced Community Forum Plugin v1.3.0
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / assets / js / forumTab.js

forumTab.js in Forumax – AI Powered Advanced Community Forum Plugin 1.3.0, at assets/js/forumTab.js

15 lines 585 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 function forumTab(forumEvent, forumContainer, tabId) {
2 var container = document.getElementById(forumContainer);
3 var tabContents = container.getElementsByClassName("tab-content");
4 var tabs = container.getElementsByClassName("tab");
5
6 for (var i = 0; i < tabContents.length; i++) {
7 tabContents[i].style.display = "none";
8 }
9 for (var i = 0; i < tabs.length; i++) {
10 tabs[i].classList.remove("active");
11 }
12
13 document.getElementById(tabId).style.display = "block";
14 forumEvent.currentTarget.classList.add("active");
15 }