From dad59d36c018c5be53fc16a9f53efda85ae9eeab Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Tue, 9 Feb 2016 15:40:55 +0100 Subject: [PATCH] Fixed typos. --- .../app/lib/base/jquery.contenteditable.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/assets/javascripts/app/lib/base/jquery.contenteditable.js b/app/assets/javascripts/app/lib/base/jquery.contenteditable.js index 7995def19..ed1ecad53 100644 --- a/app/assets/javascripts/app/lib/base/jquery.contenteditable.js +++ b/app/assets/javascripts/app/lib/base/jquery.contenteditable.js @@ -84,7 +84,7 @@ return } - // breack
after enter on empty line + // break
after enter on empty line sel = window.getSelection() node = $(sel.anchorNode) if (node.parent().is('blockquote')) { @@ -95,15 +95,15 @@ } // on zammad metaKey + ctrlKey + i/b/u - // + metaKey + ctrlKey + u -> Toggles the current selection between underlined and not underlined - // + metaKey + ctrlKey + b -> Toggles the current selection between bold and non-bold - // + metaKey + ctrlKey + i -> Toggles the current selection between italic and non-italic - // + metaKey + ctrlKey + r -> Removes the formatting tags from the current selection - // + metaKey + ctrlKey + h -> Inserts a Horizontal Rule - // + metaKey + ctrlKey + l -> Toggles the text selection between an unordered list and a normal block - // + metaKey + ctrlKey + k -> Toggles the text selection between an ordered list and a normal block - // + metaKey + ctrlKey + o -> Draws a line through the middle of the current selection - // + metaKey + ctrlKey + r -> Removes any hyperlink from the current selection + // metaKey + ctrlKey + u -> Toggles the current selection between underlined and not underlined + // metaKey + ctrlKey + b -> Toggles the current selection between bold and non-bold + // metaKey + ctrlKey + i -> Toggles the current selection between italic and non-italic + // metaKey + ctrlKey + r -> Removes the formatting tags from the current selection + // metaKey + ctrlKey + h -> Inserts a Horizontal Rule + // metaKey + ctrlKey + l -> Toggles the text selection between an unordered list and a normal block + // metaKey + ctrlKey + k -> Toggles the text selection between an ordered list and a normal block + // metaKey + ctrlKey + o -> Draws a line through the middle of the current selection + // metaKey + ctrlKey + w -> Removes any hyperlink from the current selection if ( !e.altKey && e.ctrlKey && e.metaKey && (_this.options.richTextFormatKey[ e.keyCode ] || e.keyCode == 82 || e.keyCode == 72