Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/queuepro/node_modules/dom-plane/src/ drwxrwxr-x | |
| Viewing file: Select action/file-type: import createPointCB from 'create-point-cb';
export { createPointCB };
function createWindowRect(){
let props = {
top: {value: 0, enumerable: true},
left: {value: 0, enumerable: true},
right: {value: window.innerWidth, enumerable: true},
bottom: {value: window.innerHeight, enumerable: true},
width: {value: window.innerWidth, enumerable: true},
height: {value: window.innerHeight, enumerable: true},
x: {value: 0, enumerable: true},
y: {value: 0, enumerable: true}
};
if(Object.create){
return Object.create({}, props);
}else{
let rect = {};
Object.defineProperties(rect, props);
return rect;
}
}
export function getClientRect(el){
if(el === window){
return createWindowRect();
}else{
try{
let rect = el.getBoundingClientRect();
if(rect.x === undefined){
rect.x = rect.left;
rect.y = rect.top;
}
return rect;
}catch(e){
throw new TypeError("Can't call getBoundingClientRect on "+el);
}
}
}
export function pointInside(point, el){
let rect = getClientRect(el);
return (point.y > rect.top && point.y < rect.bottom &&
point.x > rect.left && point.x < rect.right);
}
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]-- |