Bug 910305 - Detached chat windows are always above other browser windows, r=mixedpuppy.
--- a/browser/base/content/socialchat.xml
+++ b/browser/base/content/socialchat.xml
@@ -638,17 +638,17 @@
<parameter name="aChatbox"/>
<parameter name="aOptions"/>
<parameter name="aCallback"/>
<body><![CDATA[
let options = "";
for (let name in aOptions)
options += "," + name + "=" + aOptions[name];
- let otherWin = window.openDialog("chrome://browser/content/chatWindow.xul", null, "chrome,all" + options);
+ let otherWin = window.openDialog("chrome://browser/content/chatWindow.xul", null, "chrome,all,dialog=no" + options);
otherWin.addEventListener("load", function _chatLoad(event) {
if (event.target != otherWin.document)
return;
otherWin.removeEventListener("load", _chatLoad, true);
let otherChatbox = otherWin.document.getElementById("chatter");
aChatbox.swapDocShells(otherChatbox);