From 8fe26988d159b8ad3970f54f256245cece3efce5 Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Sat, 23 Jun 2018 21:27:05 +0200 Subject: Fix all newly introduced linting issues Signed-off-by: Sheogorath --- public/js/lib/editor/utils.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'public/js/lib/editor/utils.js') diff --git a/public/js/lib/editor/utils.js b/public/js/lib/editor/utils.js index 33670884..36e5c121 100644 --- a/public/js/lib/editor/utils.js +++ b/public/js/lib/editor/utils.js @@ -16,11 +16,11 @@ export function wrapTextWith (editor, cm, symbol) { let headIndex = editor.indexFromPos(ranges[i].head) cm.replaceRange(symbol + selection + symbol, from, to, '+input') if (anchorIndex > headIndex) { - ranges[i].anchor.ch+= symbol.length - ranges[i].head.ch+= symbol.length + ranges[i].anchor.ch += symbol.length + ranges[i].head.ch += symbol.length } else { - ranges[i].head.ch+= symbol.length - ranges[i].anchor.ch+= symbol.length + ranges[i].head.ch += symbol.length + ranges[i].anchor.ch += symbol.length } cm.setSelections(ranges) } else { @@ -54,7 +54,7 @@ export function insertText (cm, text, cursorEnd = 0) { cm.setCursor({line: cursor.line, ch: cursor.ch + cursorEnd}) } -export function insertLink(cm, isImage) { +export function insertLink (cm, isImage) { let cursor = cm.getCursor() let ranges = cm.listSelections() const linkEnd = '](https://)' @@ -71,16 +71,16 @@ export function insertLink(cm, isImage) { selection = symbol + selection + linkEnd cm.replaceRange(selection, from, to) if (anchorIndex > headIndex) { - ranges[i].anchor.ch+= symbol.length - ranges[i].head.ch+= symbol.length + ranges[i].anchor.ch += symbol.length + ranges[i].head.ch += symbol.length } else { - ranges[i].head.ch+= symbol.length - ranges[i].anchor.ch+= symbol.length + ranges[i].head.ch += symbol.length + ranges[i].anchor.ch += symbol.length } cm.setSelections(ranges) } else { cm.replaceRange(symbol + linkEnd, cursor, cursor) - cm.setCursor({line: cursor.line, ch: cursor.ch + symbol.length + linkend.length}) + cm.setCursor({line: cursor.line, ch: cursor.ch + symbol.length + linkEnd.length}) } } cm.focus() -- cgit v1.2.3