mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 17:30:18 +01:00
20 lines
409 B
Plaintext
20 lines
409 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
|
||
|
<!DOCTYPE overlay>
|
||
|
|
||
|
<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||
|
<script type="application/x-javascript"><![CDATA[
|
||
|
if (typeof closeWindow == "function" && /canQuitApplication/.test(closeWindow))
|
||
|
{
|
||
|
window.closeWindow = function(aClose) {
|
||
|
if (aClose)
|
||
|
{
|
||
|
window.close();
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
};
|
||
|
}
|
||
|
]]></script>
|
||
|
</overlay>
|