afterClose
fires after closing a tab in Tabbar
afterClose: (id: string) => void;
Parameters:
id: string
- the id of a closed tab
Example
tabbar.events.on("afterClose", function(id){
console.log(id);
});
Related sample: Tabbar. Events
Change log:
added in v6.4