diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-01 14:35:05 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-01 14:35:05 +0200 |
commit | 4445c72f8034c8d569b8ac57a308e8703b7dbda2 (patch) | |
tree | 0adee7c7bdbf2441f13a8df0bc6072ced2ddc027 /js/codeq | |
parent | deb9495a60c76b0ccbcc2f55a598b400fcfff666 (diff) |
Bugfix: remove action has type 'rm', not 'r'
Diffstat (limited to 'js/codeq')
-rw-r--r-- | js/codeq/prolog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/prolog.js b/js/codeq/prolog.js index a9ce848..6447b86 100644 --- a/js/codeq/prolog.js +++ b/js/codeq/prolog.js @@ -281,7 +281,7 @@ pos = codeq.codePointCount(doc.getRange(firstCharacterPos, changeObj.from)); if (changeObj.removed) { - activityHandler.queueTrace({'typ': 'r', 'off': pos, 'len': codeq.codePointCount(changeObj.removed.join(''))}); + activityHandler.queueTrace({'typ': 'rm', 'off': pos, 'len': codeq.codePointCount(changeObj.removed.join(''))}); } if (changeObj.text) { |