Swicth to bubbling mouse events

--HG--
branch : mobile
This commit is contained in:
mark.finkle@gmail.com 2008-05-21 15:12:08 -04:00
Родитель bc49df264c
Коммит 5f834631fd
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -430,9 +430,9 @@ MouseController.prototype = {
init: function(aBrowser)
{
this._browser = aBrowser;
this._browser.addEventListener("mousedown", this, true);
this._browser.addEventListener("mouseup",this, true);
this._browser.addEventListener("mousemove", this, true);
this._browser.addEventListener("mousedown", this, false);
this._browser.addEventListener("mouseup",this, false);
this._browser.addEventListener("mousemove", this, false);
},
handleEvent: function(aEvent)