Bug 1039764 - fix bad js in spellchecker context menu in Nightly.r=mconley

This commit is contained in:
Allison Naaktgeboren 2014-07-17 19:06:29 -07:00
Родитель 8c0f5091f2
Коммит aa3f13d172
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -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)