Bug 1619109 - Used toggle() method for toggling CSS class in Measuring Tool. r=pbro

Differential Revision: https://phabricator.services.mozilla.com/D64881

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Sebastian Zartner 2020-03-04 19:27:48 +00:00
Родитель d97983b83c
Коммит 8fbb2b22ba
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -745,9 +745,7 @@ MeasuringToolHighlighter.prototype = {
// Changes the resizing cursors in case the measuring box is mirrored
const isMirrored =
(coords.w < 0 || coords.h < 0) && !(coords.w < 0 && coords.h < 0);
this.getElement("tool").classList[isMirrored ? "add" : "remove"](
"mirrored"
);
this.getElement("tool").classList.toggle("mirrored", isMirrored);
this.showLabel("size");
},