зеркало из https://github.com/mozilla/pjs.git
Bug 224002 - double clicking tab close button creates new tab. r=mconnor, a=asa.
This commit is contained in:
Родитель
2a57525bbb
Коммит
b98b45c9d3
|
@ -1257,7 +1257,10 @@
|
||||||
<parameter name="aEvent"/>
|
<parameter name="aEvent"/>
|
||||||
<body>
|
<body>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
if (aEvent.originalTarget.localName != 'tab' && aEvent.button == 0) {
|
if (aEvent.button == 0 && aEvent.originalTarget.localName != 'tab' &&
|
||||||
|
// Workaround to Bug 224002, the preventBubble() call in the tabbox binding
|
||||||
|
// should block this event.
|
||||||
|
aEvent.originalTarget.localName != "toolbarbutton") {
|
||||||
var e = document.createEvent("Events");
|
var e = document.createEvent("Events");
|
||||||
e.initEvent("NewTab", false, true);
|
e.initEvent("NewTab", false, true);
|
||||||
this.dispatchEvent(e);
|
this.dispatchEvent(e);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче