Added changeTab function to aid in switching tabs outside of the TabLink.

This commit is contained in:
Matt Mo 2021-10-20 10:07:43 -07:00
parent 1fcd5af536
commit e684d337ee

View File

@ -136,8 +136,22 @@ class TabLinkTemplate extends IgniteTemplate {
}
}
/**
* Fires a change tab event that will cause the given tab to become active.
* @param {String} name The name of the tab to change to.
* @param {String} group The name of the tab group if applicable.
*/
function changeTab(name, group = null) {
var changeEvent = new Event("tabchange");
changeEvent.name = name;
changeEvent.group = group;
window.dispatchEvent(changeEvent);
}
customElements.define("tab-link", TabLink);
export {
TabLinkTemplate as TabLink
TabLinkTemplate as TabLink,
changeTab as changeTab
}