summaryrefslogtreecommitdiff
path: root/common/content/preferences.xul
blob: 4fd422b68ea6bdba528780bd5afd710f08aa459f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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("dactyl://help/options", null, null);
        Application.activeWindow.open(uri).focus(); // TODO: generalise for Teledactyl et al.
        window.close();
    </script>
</window>

<!-- vim: set fdm=marker sw=4 ts=4 et: -->