0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Upgrade CodeMirror

closes #2108

- upgrade to 4.0.1
- requires removing the deprecated setLine method
This commit is contained in:
Hannah Wolfe 2014-03-16 12:28:12 +00:00
parent 80bdfd7967
commit 6d3cd84309
2 changed files with 10 additions and 3 deletions

View file

@ -2,7 +2,7 @@
"name": "ghost",
"dependencies": {
"backbone": "1.0.0",
"codemirror": "3.15.0",
"codemirror": "4.0.1",
"Countable": "2.0.2",
"fastclick": "1.0.0",
"ghost-ui": "0.1.2",

View file

@ -45,8 +45,15 @@
// ln - line number
addMarker = function (line, ln) {
var marker,
magicId = '{<' + uploadId + '>}';
editor.setLine(ln, magicId + line.text);
magicId = '{<' + uploadId + '>}',
newText = magicId + line.text;
editor.replaceRange(
newText,
{line: ln, ch: 0},
{line: ln, ch: newText.length}
);
marker = editor.markText(
{line: ln, ch: 0},
{line: ln, ch: (magicId.length)},