Skip to content

Commit

Permalink
fix pr conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
André Canuto authored and André Canuto committed Oct 13, 2023
1 parent b6259b1 commit bfa22c5
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/tinymce/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type { Selection } from "@syncfusion/ej2-documenteditor";
import { EditorAdapter } from "../editor";
import { IaraInference } from "../speech";

Expand All @@ -8,9 +7,6 @@ export class IaraTinyMCEAdapter extends EditorAdapter implements EditorAdapter {
private get _editorAPI() {
return this._editor.activeEditor;
}
private get _editorSelection(): Selection {
return this._editor.selection;
}

getUndoStackSize(): number {
return this._editorAPI.undoManager.data.length || 0;
Expand Down Expand Up @@ -56,16 +52,6 @@ export class IaraTinyMCEAdapter extends EditorAdapter implements EditorAdapter {
this._editorAPI.undoManager.undo();
}

copyReport(): void {
this._editorSelection.selectAll();
this._editorSelection.copySelectedContent(false);
}

clearReport(): void {
this._editorSelection.selectAll();
this._editorAPI.delete();
}

textFormatter(_text: IaraInference): string {
throw new Error("Método não implementado.");
}
Expand Down

0 comments on commit bfa22c5

Please sign in to comment.