platypush/platypush/backend/http/webapp/src/ui.js

9 lines
140 B
JavaScript

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