Browse Source

Fix dumb error in previous commit

Signed-off-by: Viktor Oreshkin <stek29@users.noreply.github.com>
master
Viktor Oreshkin 8 years ago
parent
commit
f3ce5151f6
  1. 4
      app/js/lib/ng_utils.js

4
app/js/lib/ng_utils.js

@ -1442,7 +1442,7 @@ angular.module('izhukov.utils', []) @@ -1442,7 +1442,7 @@ angular.module('izhukov.utils', [])
length: text.length
})
rawOffset -= match[2].length + match[4].length
} else if (match[9]) { // code
} else if (match[7]) { // code
newText.push(match[6] + text + match[9])
entities.push({
_: markdownEntities[match[7]],
@ -1962,4 +1962,4 @@ angular.module('izhukov.utils', []) @@ -1962,4 +1962,4 @@ angular.module('izhukov.utils', [])
})
return timeParams
})
})

Loading…
Cancel
Save