@zoff-tech/zt-bottom-drawer
Version:
Bottom Drawer / Web Component
14 lines (11 loc) • 417 B
JavaScript
import { menuController } from '@utils/menu-controller';
/*!
* (C) Ionic http://ionicframework.com - MIT License
*/
// Given a menu, return whether or not the menu toggle should be visible
const updateVisibility = async (menu) => {
const menuEl = await menuController.get(menu);
return !!(menuEl && (await menuEl.isActive()));
};
export { updateVisibility as u };
//# sourceMappingURL=menu-toggle-util.js.map