Skip to content

Commit

Permalink
chore: apply code review
Browse files Browse the repository at this point in the history
  • Loading branch information
js87zz committed Apr 23, 2020
1 parent 1611e9e commit ede3fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/editor/src/js/codemirror/continuelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CodeMirror.commands.indentOrderedList = function(cm) {
CodeMirror.commands.newlineAndIndentContinueMarkdownList = function(cm) {
if (cm.getOption('disableInput') || !!cm.state.isCursorInCodeBlock) return CodeMirror.Pass;
var ranges = cm.listSelections(),
replacements = [];
replacements = [];

for (var i = 0; i < ranges.length; i++) {
var pos = ranges[i].head;
Expand Down

0 comments on commit ede3fbd

Please sign in to comment.