diff --git a/ignite-html-tabs.js b/ignite-html-tabs.js
index f499df0..257e099 100644
--- a/ignite-html-tabs.js
+++ b/ignite-html-tabs.js
@@ -3,7 +3,7 @@ import { IgniteTemplate, slot, div, html } from "../ignite-html/ignite-template.
/**
* Makes this IgniteTemplate a tab that will become active or inactive based on the state of the tab.
- * @param {String} name The name of the tab.
+ * @param {String|String[]} name The name of the tab. If an array is passed, this tab can activate is more than one tab is active.
* @param {String} group The tab group to put this tab under, by default this is null.
* @param {Boolean} active Whether or not this tab is active by default.
* @param {Function} showCallback Called when this tab is changed to the shown state.
@@ -25,7 +25,16 @@ import { IgniteTemplate, slot, div, html } from "../ignite-html/ignite-template.
//the event listener.
var callback = new IgniteCallback(event => {
if (this.element) {
- if (event.name == name && event.group == group) {
+ if (event.group == group && Array.isArray(name) && name.includes(event.name)) {
+ if (!this.element.classList.contains("active")) {
+ this.element.classList.add("active");
+
+ //Invoke the show callback if there is one.
+ if (showCallback) {
+ showCallback();
+ }
+ }
+ } else if (event.name == name && event.group == group) {
if (!this.element.classList.contains("active")) {
this.element.classList.add("active");