зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1039764 - fix bad js in spellchecker context menu in Nightly.r=mconley
This commit is contained in:
Родитель
8c0f5091f2
Коммит
aa3f13d172
|
@ -191,7 +191,11 @@ InlineSpellChecker.prototype = {
|
|||
if (curlang == sortedList[i].id) {
|
||||
item.setAttribute("checked", "true");
|
||||
} else {
|
||||
var callback = function(me, val) { return function(evt) { me.selectDictionary(val, me.menu.ownerDocument.defaultView); } };
|
||||
var callback = function(me, val) {
|
||||
return function(evt) {
|
||||
me.selectDictionary(val, menu.ownerDocument.defaultView);
|
||||
}
|
||||
};
|
||||
item.addEventListener("command", callback(this, i), true);
|
||||
}
|
||||
if (insertBefore)
|
||||
|
|
Загрузка…
Ссылка в новой задаче