From f098366616087ce627a8e77d5e721af20e1a4770 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Wed, 21 May 2008 10:02:48 +0000 Subject: [PATCH] fixed home/end in composer --- content/editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/editor.js b/content/editor.js index 31af05a1..c9d0a8fb 100644 --- a/content/editor.js +++ b/content/editor.js @@ -246,11 +246,11 @@ liberator.Editor = function () //{{{ function () { liberator.editor.executeCommand("cmd_deleteToEndOfLine", 1); }); liberator.mappings.add(modes, - ["", ""], "Move cursor to beginning of current line", + [""], "Move cursor to beginning of current line", function () { liberator.editor.executeCommand("cmd_beginLine", 1); }); liberator.mappings.add(modes, - ["", ""], "Move cursor to end of current line", + [""], "Move cursor to end of current line", function () { liberator.editor.executeCommand("cmd_endLine", 1); }); liberator.mappings.add(modes,