org.smallmind.wicket.component.tabs.Tab.js Maven / Gradle / Ivy
if (typeof SMALLMIND == "undefined") {
var SMALLMIND = {};
}
if (typeof SMALLMIND.component == "undefined") {
SMALLMIND.component = {};
}
SMALLMIND.component.tab = new function () {
this.highlight = function (tab) {
if (tab.getAttribute("selected") == null) {
tab.className = "tabhighlighted"
}
}
this.normal = function (tab) {
if (tab.getAttribute("selected") == null) {
tab.className = "tabstandard"
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy