diff options
author | Nick White <git@njw.me.uk> | 2011-06-23 19:30:51 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2011-06-23 19:30:51 +0100 |
commit | 575c45e066404a85adbf8112f676ba89c7258daa (patch) | |
tree | b9c718f36451277379d4f54a36756ee820166a03 /gecko/chrome | |
parent | a2a6986c2719849d4e794261f29c8689701445e3 (diff) |
Add viable to firefox, improve firefox usage, general cleanups
Diffstat (limited to 'gecko/chrome')
-rw-r--r-- | gecko/chrome/content/simplyread.xul | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gecko/chrome/content/simplyread.xul b/gecko/chrome/content/simplyread.xul index 2ed3ac8..87af5ea 100644 --- a/gecko/chrome/content/simplyread.xul +++ b/gecko/chrome/content/simplyread.xul @@ -1,10 +1,11 @@ <?xml version="1.0"?> <overlay id="simplyread" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <script src="chrome://simplyread/content/viable.js" /> <script src="chrome://simplyread/content/simplyread.js" /> <keyset> - <key id="simplyread" modifiers="accel alt" key="r" oncommand="simplyread()" /> + <key id="simplyread" modifiers="control alt" key="r" oncommand="simplyread()" /> </keyset> - <statusbar id="addon-bar"> - <image id="simplyread-icon" src="chrome://simplyread/content/icon.png" onclick="simplyread()" /> - </statusbar> + <toolbar id="addon-bar"> + <toolbarbutton id="simplyread-btn" image="chrome://simplyread/content/icon.png" label="SimplyRead" oncommand="simplyread()" /> + </toolbar> </overlay> |