Merge pull request #22593 from edx/adeel/prod_1076_html_editor_error

Fix html editor for adding �
This commit is contained in:
adeel khan
2019-12-23 16:46:51 +05:00
committed by GitHub
2 changed files with 16 additions and 11 deletions

View File

@@ -6113,6 +6113,11 @@ window.CodeMirror = (function () { 'use strict';
getLine: function(line) {var l = this.getLineHandle(line); return l && l.text},
setLine: function(line, text) {
if (isLine(this, line))
replaceRange(this, text, Pos(line, 0), clipPos(this, Pos(line)));
},
getLineHandle: function(line) {if (isLine(this, line)) { return getLine(this, line) }},
getLineNumber: function(line) {return lineNo(line)},

File diff suppressed because one or more lines are too long