1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 12:15:49 +01:00

Whitespace fixes.

This commit is contained in:
Doug Kearns
2010-10-09 21:45:52 +11:00
parent 86efd0bb6a
commit 8be0558982
7 changed files with 11 additions and 14 deletions

View File

@@ -27,7 +27,7 @@ const Util = Module("Util", {
dactyl: {
__noSuchMethod__: function (meth, args) {
let win = util.activeWindow;
if(win && win.dactyl)
if (win && win.dactyl)
return win.dactyl[meth].apply(win.dactyl, args);
return null;
}