Bug 543675 - Assignment to undeclared variable eventItem. r=mfinkle

This commit is contained in:
Dão Gottwald 2010-02-03 13:40:55 +01:00
Родитель e0c057e8ed
Коммит 1a4f0478e7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -140,7 +140,7 @@ Events.prototype = {
},
dispatch : function evts_dispatch(aEvent, aEventItem) {
eventItem = new EventItem(aEvent, aEventItem);
var eventItem = new EventItem(aEvent, aEventItem);
this._listeners.forEach(function(key){
if (key.event == aEvent) {