Bug 1229224: Bustage fix for browser-social.js

--HG--
extra : commitid : 2aNdGN3Mgo1
This commit is contained in:
Dave Townsend 2016-01-04 12:04:57 -08:00
Родитель 86f03db916
Коммит 208e7d54c1
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1359,7 +1359,8 @@ SocialMarks = {
let providers = this.getProviders();
// remove all previous entries by class
for (let m of document.getElementsByClassName("context-socialmarks")) {
let menus = [...document.getElementsByClassName("context-socialmarks")];
for (let m of menus) {
m.parentNode.removeChild(m);
}