1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

minor code review

This commit is contained in:
gorhill 2015-05-30 13:44:55 -04:00
parent 3f9b704846
commit 67950ec135

View File

@ -737,22 +737,20 @@ var elementFromPoint = function(x, y) {
var onSvgHovered = (function() { var onSvgHovered = (function() {
var timer = null; var timer = null;
var position = { x: 0, y: 0 }; var mx = 0, my = 0;
var onTimer = function() { var onTimer = function() {
timer = null; timer = null;
var elem = elementFromPoint(position.x, position.y); var elem = elementFromPoint(mx, my);
highlightElements(elem ? [elem] : []); highlightElements(elem ? [elem] : []);
}; };
var onMove = function(ev) { var onMove = function(ev) {
position.x = ev.clientX; mx = ev.clientX;
position.y = ev.clientY; my = ev.clientY;
if ( timer !== null ) { if ( timer === null ) {
return; timer = vAPI.setTimeout(onTimer, 40);
} }
timer = vAPI.setTimeout(onTimer, 40);
}; };
return onMove; return onMove;