Backed out changeset 3edd47730527

MozReview-Commit-ID: AESEl0ht2Gi
This commit is contained in:
Dão Gottwald 2017-04-20 12:41:20 +02:00
Родитель 1a54030e40
Коммит 5e74d85f79
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -8219,8 +8219,8 @@ var MousePosTracker = {
handleEvent(event) {
var fullZoom = this._windowUtils.fullZoom;
this._x = event.clientX / fullZoom;
this._y = event.clientY / fullZoom;
this._x = event.screenX / fullZoom - window.mozInnerScreenX;
this._y = event.screenY / fullZoom - window.mozInnerScreenY;
this._listeners.forEach(function(listener) {
try {