mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
fb1200162e
Also cleaned a few things, removed some unused variables
19 lines
526 B
JavaScript
19 lines
526 B
JavaScript
//gets cursor position relative to canvas
|
|
function getCursorPosition(e) {
|
|
var x;
|
|
var y;
|
|
|
|
if (e.pageX != undefined && e.pageY != undefined) {
|
|
x = e.pageX;
|
|
y = e.pageY;
|
|
}
|
|
else {
|
|
x = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
|
|
y = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
|
|
}
|
|
|
|
x -= currentLayer.canvas.offsetLeft;
|
|
y -= currentLayer.canvas.offsetTop;
|
|
|
|
return [Math.round(x), Math.round(y)];
|
|
} |