X-Git-Url: https://git.donarmstrong.com/dactyl.git?a=blobdiff_plain;f=pentadactyl%2Fcontent%2Fconfig.js;h=3294cb1aee43803c04df64d778582c5c6f5a5a28;hb=354a049cce8415487552ce405cce167b7071fe1f;hp=183f6d103999f489740ed12869f14a1d53f3e66c;hpb=3d837eb266a3a01d424192aa4ec1a167366178c5;p=dactyl.git diff --git a/pentadactyl/content/config.js b/pentadactyl/content/config.js index 183f6d1..3294cb1 100644 --- a/pentadactyl/content/config.js +++ b/pentadactyl/content/config.js @@ -21,16 +21,16 @@ var Config = Module("config", ConfigBase, { function () { window.openDialog("chrome://browser/content/bookmarks/bookmarksPanel.xul", "Bookmarks", "dialog,centerscreen,width=600,height=600"); }], checkupdates: ["Check for updates", function () { window.checkForUpdates(); }, - function () "checkForUpdates" in window], + () => "checkForUpdates" in window], cookies: ["List your cookies", function () { window.toOpenWindowByType("Browser:Cookies", "chrome://browser/content/preferences/cookies.xul", "chrome,dialog=no,resizable"); }], - console: ["JavaScript console", - function () { window.toJavaScriptConsole(); }], + console: ["Browser console", + function () { window.HUDService.toggleBrowserConsole(); }], customizetoolbar: ["Customize the Toolbar", function () { window.BrowserCustomizeToolbar(); }], dominspector: ["DOM Inspector", function () { window.inspectDOMDocument(window.content.document); }, - function () "inspectDOMDocument" in window], + () => "inspectDOMDocument" in window], downloads: ["Manage Downloads", function () { window.BrowserDownloadsUI(); }], history: ["List your history", @@ -63,7 +63,7 @@ var Config = Module("config", ConfigBase, { function () { modules.buffer.viewSelectionSource(); }], venkman: ["The JavaScript debugger", function () { dactyl.assert("start_venkman" in window, "Venkman is not installed"); window.start_venkman() }, - function () "start_venkman" in window] + () => "start_venkman" in window] }, removeTab: function removeTab(tab) { @@ -211,8 +211,8 @@ var Config = Module("config", ConfigBase, { completion.sidebar = function sidebar(context) { let menu = document.getElementById("viewSidebarMenu"); context.title = ["Sidebar Panel"]; - context.completions = Array.filter(menu.childNodes, function (n) n.hasAttribute("label")) - .map(function (n) [n.getAttribute("label"), ""]); + context.completions = Array.filter(menu.childNodes, n => n.hasAttribute("label")) + .map(n => [n.getAttribute("label"), ""]); }; }, events: function initEvents(dactyl, modules, window) { @@ -226,7 +226,7 @@ var Config = Module("config", ConfigBase, { mappings.add([modes.NORMAL], ["", "", ""], "Handled by " + config.host, - function () Events.PASS_THROUGH); + () => Events.PASS_THROUGH); }, options: function initOptions(dactyl, modules, window) { modules.options.add(["online"],