Bug 1377740 - Only set the url when the link exists n?nechen r=nechen

MozReview-Commit-ID: AqChrNYGChw

--HG--
extra : rebase_source : 1e2856ee16f31080dc428c82e159a296a5b0c02c
This commit is contained in:
Sylvestre Ledru 2017-07-24 08:16:55 +02:00
Родитель f81a14f910
Коммит 3ceadf693d
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -54,7 +54,9 @@ function init() {
links.forEach(function(link) {
let url = formatter.formatURLPref(link.pref);
let element = document.getElementById(link.id);
element.setAttribute("href", url);
if (element) {
element.setAttribute("href", url);
}
});
} catch (ex) {}