Arno Kaimbacher
87e9314b00
Some checks failed
CI Pipeline / japa-tests (push) Failing after 51s
- added lime color inside tailwind.config.js - added some utilities scripts needed for components - npm updates - changed postcss.config.js for nesting css styles - added about function to NavBar.vue
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
/**
|
|
* Return the default global focus trap stack
|
|
*
|
|
* @return {import('focus-trap').FocusTrap[]}
|
|
*/
|
|
export const getTrapStack = function() {
|
|
// Create global stack if undefined
|
|
Object.assign(window, { _nc_focus_trap: window._nc_focus_trap || [] })
|
|
|
|
return window._nc_focus_trap
|
|
} |