1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-02 17:03:33 +02:00

Fix some minor function formatting faux pas.

This commit is contained in:
Doug Kearns
2009-05-29 14:46:50 +10:00
parent 5e760406ab
commit cd3364197f
5 changed files with 13 additions and 9 deletions

View File

@@ -627,7 +627,7 @@ function Events() //{{{
////////////////////// MAPPINGS ////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
liberator.registerObserver("load_mappings", function() {
liberator.registerObserver("load_mappings", function () {
mappings.add(modes.all,
["<Esc>", "<C-[>"], "Focus content",
function () { events.onEscape(); });
@@ -872,9 +872,9 @@ function Events() //{{{
yield match[0];
},
canonKeys: function(keys)
canonKeys: function (keys)
{
var res = util.map(events.splitKeys(keys), function(key) {
var res = util.map(events.splitKeys(keys), function (key) {
let keyCode = 0;
if (key[0] == "<")