Browse Source

still not work menu for restarting

pull/1/head
10sr 12 years ago
parent
commit
692d9a8b35
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      .keysnail.js

+ 1
- 2
.keysnail.js View File

@@ -241,8 +241,7 @@ ext.add("restart-firefox-add-menu", function(){
var elm = document.createElementNS(XUL_NS, "menuitem");
elm.setAttribute("label", "Restart Firefox");
elm.setAttribute("id", "menu_RestartFirefoxKs")
elm.setAttribute("oncommand", function(){
ext.exec("restart-firefox");});
elm.setAttribute("oncommand", "ext.exec('restart-firefox');");
var menu = document.getElementById("menu_FilePopup");
// menu.insertBefore(elm, menu.getElementById("menu_FileQuitItem"));
menu.appendChild(elm);


Loading…
Cancel
Save