Skip to content

Commit

Permalink
implementado uppercase no adapters (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
BraunAugusto authored Jan 22, 2024
1 parent 9c0a3f4 commit 1fe0a0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/syncfusion/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export class IaraSyncfusionStyleManager extends IaraEditorStyleManager {
toggleUnderline(): void {
this._editor.editor.toggleUnderline("Single");
}

toggleUppercase(): void {
throw new Error("Método não implementado.");
this._editor.editor.toggleAllCaps();
}
}

0 comments on commit 1fe0a0f

Please sign in to comment.