platypush/platypush/backend/http/webapp/src/ui.js
2020-12-26 15:03:12 +01:00

9 lines
140 B
JavaScript

export default {
getMousePos() {
return [
window.event.clientX,
window.event.clientY,
]
}
}