Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
10
VApp/node_modules/vuetify/lib/util/isFixedPosition.mjs
generated
vendored
Normal file
10
VApp/node_modules/vuetify/lib/util/isFixedPosition.mjs
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
export function isFixedPosition(el) {
|
||||
while (el) {
|
||||
if (window.getComputedStyle(el).position === 'fixed') {
|
||||
return true;
|
||||
}
|
||||
el = el.offsetParent;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
//# sourceMappingURL=isFixedPosition.mjs.map
|
Reference in New Issue
Block a user