Migrate tests to Typescript

This commit is contained in:
Federico
2024-03-20 20:55:51 -03:00
committed by Tony Narlock
parent ac60fc7a76
commit 3e1008ee96
8 changed files with 150 additions and 66 deletions

View File

@@ -159,7 +159,10 @@ export default class MathUI extends Plugin {
this.formView.displayButtonView.isOn = mathCommand.display || false;
}
private _hideUI() {
/**
* @private
*/
public _hideUI(): void {
if ( !this._isFormInPanel ) {
return;
}