mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 789308. Fix reversed socialFrameShow/Hide events. r=felipe
This commit is contained in:
parent
8373556f74
commit
c436d3f5f2
@ -47,7 +47,7 @@
|
||||
|
||||
// let the chat frame know if it is being shown or hidden
|
||||
let evt = this.iframe.contentDocument.createEvent("CustomEvent");
|
||||
evt.initCustomEvent(val ? "socialFrameHide" : "socialFrameShow", true, true, {});
|
||||
evt.initCustomEvent(val ? "socialFrameShow" : "socialFrameHide", true, true, {});
|
||||
this.iframe.contentDocument.documentElement.dispatchEvent(evt);
|
||||
</setter>
|
||||
</property>
|
||||
|
Loading…
Reference in New Issue
Block a user