mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix copy/pasto from bug 474480
This commit is contained in:
parent
6fb35cb03b
commit
dc3d62af53
@ -87,11 +87,13 @@
|
||||
if (optionsURL == "")
|
||||
return;
|
||||
|
||||
this._optionsHandler.box.collapsed = !box.collapsed;
|
||||
let box = this._optionsHandler.box;
|
||||
box.collapsed = !box.collapsed;
|
||||
|
||||
if (this._optionsHandler.frame.getAttribute("src") == "") {
|
||||
this._optionsHandler.frame.addEventListener("load", this._optionsHandler, true);
|
||||
this._optionsHandler.frame.setAttribute("src", optionsURL);
|
||||
let frame = this._optionsHandler.frame;
|
||||
if (frame.getAttribute("src") == "") {
|
||||
frame.addEventListener("load", this._optionsHandler, true);
|
||||
frame.setAttribute("src", optionsURL);
|
||||
}
|
||||
]]>
|
||||
</body>
|
||||
|
Loading…
Reference in New Issue
Block a user