1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 01:44:12 +01:00

Convert expression closures to arrow syntax.

This commit is contained in:
Doug Kearns
2013-09-15 00:42:51 +10:00
parent 6eeb0f50a2
commit 6ee830dfad
53 changed files with 702 additions and 703 deletions

View File

@@ -11,7 +11,7 @@ var Config = Module("config", ConfigBase, {
init.superapply(this, arguments);
if (!("content" in modules))
modules.__defineGetter__("content", function () window.content);
modules.__defineGetter__("content", () => window.content);
util.overlayWindow(window, { append: <><hbox id="statusTextBox" flex=""/></> });
},