Skip to content
Snippets Groups Projects
Commit da8bc239 authored by jojohoch's avatar jojohoch
Browse files

[player] Prevent creation of nested marked tags

parent fdd170d8
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,7 @@ export class MarkingService {
if (clear) {
this.clearMarkingFromNode(range);
} else {
const markedElement: HTMLElement = this.createMarkedElement(color);
range.surroundContents(markedElement);
this.markNode(range, color);
}
} else {
const nodes: Node[] = [];
......@@ -99,6 +98,13 @@ export class MarkingService {
return { text, previousText, nextText };
};
private markNode(range: Range, color: string): void {
if (range.startContainer.parentElement?.tagName.toUpperCase() !== MarkingService.MARKING_TAG) {
const markedElement: HTMLElement = this.createMarkedElement(color);
range.surroundContents(markedElement);
}
}
private markNodes(nodes: Node[], range: Range, color: string): void {
nodes.forEach((node, index) => {
const nodeValues = this.getNodeValues(node, nodes, index, range);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment