Bug 1228282 - fix use of aMenuItem in FeedWriter's _initMenuItemWithFile to unbreak feed reader UI, r=mak

--HG--
extra : commitid : Isg9bHqlgHY
extra : amend_source : 4993b7c8ff757b732fd2eea09517e55d6911021d
This commit is contained in:
Gijs Kruitbosch 2015-11-26 11:15:34 +00:00
Родитель 447d846853
Коммит 4531e54b7a
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -646,8 +646,8 @@ FeedWriter.prototype = {
_initMenuItemWithFile: function(aMenuItem, aFile) {
var label = this._getFileDisplayName(aFile);
var image = this._getFileIconURL(aFile);
aMenuitem.setAttribute('label', label);
aMenuitem.setAttribute('image', image);
aMenuItem.setAttribute('label', label);
aMenuItem.setAttribute('image', image);
},
/**