зеркало из https://github.com/mozilla/pjs.git
Bug 230401 - Focus not in address bar after opening new Tab by DoubleClick. patch from Martijn Wargers <martijn.martijn@gmail.com>, r=mconnor/bsmedberg, a=bsmedberg.
This commit is contained in:
Родитель
16af550715
Коммит
2550dcdc97
|
@ -1257,8 +1257,11 @@
|
|||
<parameter name="aEvent"/>
|
||||
<body>
|
||||
<![CDATA[
|
||||
if (aEvent.originalTarget.localName != 'tab' && aEvent.button == 0)
|
||||
this.selectedTab = this.addTab();
|
||||
if (aEvent.originalTarget.localName != 'tab' && aEvent.button == 0) {
|
||||
var e = document.createEvent("Events");
|
||||
e.initEvent("NewTab", false, true);
|
||||
this.dispatchEvent(e);
|
||||
}
|
||||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
|
Загрузка…
Ссылка в новой задаче