Bug 389891 - Protocol Handling dialog does not actually set nsIHandlerInfo::useHelperApp when using a prefilled helper app. r=gavin.sharp, a=schrep

This commit is contained in:
sdwilsh@shawnwilsher.com 2007-07-27 14:17:04 -07:00
Родитель 0ac3bbe158
Коммит 7a4a58486b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -123,7 +123,7 @@ var dialog = {
let elm = document.createElement("richlistitem");
elm.setAttribute("type", "handler");
elm.setAttribute("name", app.name);
elm.object = app;
elm.obj = app;
document.getElementById("items").insertBefore(elm, this._itemChoose);
}