1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 21:07:59 +01:00
Files
pentadactyl-pm/common/content/preferences.xul
Doug Kearns 90e3dd345f Open the options help page with the addons "Options" button.
This only works for Vimperator and Xulmus as Muttator has no options
help page yet.
2009-06-28 16:03:15 +10:00

14 lines
645 B
XML

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript;version=1.8">
let uri = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService)
.newURI("chrome://liberator/locale/options.html", null, null);
Application.activeWindow.open(uri).focus(); // TODO: generalise for Muttator et al.
window.close();
</script>
</window>
<!-- vim: set fdm=marker sw=4 ts=4 et: -->