Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit d021778

Browse files
committed
Use double quotes instead of single quotes
1 parent ff4200f commit d021778

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/editor/MultiRangeInlineEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ define(function (require, exports, module) {
471471
*/
472472
MultiRangeInlineEditor.prototype._onLostContent = function (event, cause) {
473473
// Ignore when the editor's content got lost due to a deleted file, this is handled via TextRange's lostSync
474-
if (cause && cause.type === 'deleted') { return; }
474+
if (cause && cause.type === "deleted") { return; }
475475
// Else yield to the parent's implementation
476476
return this.parentClass._onLostContent.apply(this, arguments);
477477
};

0 commit comments

Comments
 (0)