mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 11:16:01 +00:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
export function isAdminPage() {
|
|
return window['dbgate_page'] == 'admin';
|
|
}
|
|
|
|
export function getOpenedTabsStorageName() {
|
|
return isAdminPage() ? 'adminOpenedTabs' : 'openedTabs';
|
|
}
|