use bubble, not capture, on mousedown so that sites can get mouse events

--HG--
branch : mobile
This commit is contained in:
dougt@dougt-ubuntu 2008-05-21 11:48:03 -07:00
Родитель de4e855851
Коммит 2662fdbc0c
1 изменённых файлов: 1 добавлений и 1 удалений

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

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