devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 384 B
JavaScript
import { CommentElementDestination } from './comment-element-destination';
export class CommentEndElementDestination extends CommentElementDestination {
assignCommentPosition(comment) {
const position = this.data.subDocumentInfo.positionImporter.currPosition;
if (comment.start != position && comment.end == -1)
comment.end = position;
}
}