Bug 1446329 - Follow-up: fix lint issue. r=me DONTBUILD

This commit is contained in:
Jorg K 2018-03-16 20:22:10 +01:00
Родитель 2c3e59119a
Коммит 31127013f5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -86,7 +86,7 @@
if (this.hasAttribute("on" + eventname)) {
var fn = new Function("event", this.getAttribute("on" + eventname));
if (fn.call(this, event) == false)
if (!fn.call(this, event))
cancel = true;
}