mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-19 17:55:17 -04:00
Fixed OT some uncaught error and exceptions
This commit is contained in:
parent
c06fb7a526
commit
92493e307a
3 changed files with 4 additions and 4 deletions
4
public/vendor/ot/editor-client.js
vendored
4
public/vendor/ot/editor-client.js
vendored
|
@ -25,8 +25,8 @@ ot.EditorClient = (function () {
|
|||
|
||||
SelfMeta.prototype.transform = function (operation) {
|
||||
return new SelfMeta(
|
||||
this.selectionBefore.transform(operation),
|
||||
this.selectionAfter.transform(operation)
|
||||
(this.selectionBefore ? this.selectionBefore.transform(operation) : null),
|
||||
(this.selectionAfter ? this.selectionAfter.transform(operation) : null)
|
||||
);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue