Added changeTab function to aid in switching tabs outside of the TabLink.
This commit is contained in:
parent
1fcd5af536
commit
e684d337ee
@ -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);
|
customElements.define("tab-link", TabLink);
|
||||||
|
|
||||||
export {
|
export {
|
||||||
TabLinkTemplate as TabLink
|
TabLinkTemplate as TabLink,
|
||||||
|
changeTab as changeTab
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user