mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-12 19:00:11 +01:00
20 lines
409 B
XML
20 lines
409 B
XML
<?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>
|