We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello There! I was trying the package and I wanted to show the toolbar only when the text-area has focus in it.
In angular 7, after changing the value of the options, the toolbar doesn't hide/show.
COMPONENT: public mdeOptions = { spellChecker: false, status: false, } test() { this.mdeOptions = {...this.mdeOptions, ...{toolbar: false}}; }
HTML: <simplemde [(ngModel)]="pregunta.cabecera" (options)="mdeOptions">
The text was updated successfully, but these errors were encountered:
HTML:
<simplemde [(ngModel)]="pregunta.cabecera" (options)="mdeOptions">
Try HTML:
<simplemde [(ngModel)]="pregunta.cabecera" [options]="mdeOptions">
options attribute is an @input not @output.
@input
@output
Sorry, something went wrong.
Not be supported yet. The options can't be changed ngAfterViewInit.
ngAfterViewInit
Oh... I thought it could. Well. You can please the support.
No branches or pull requests
Hello There! I was trying the package and I wanted to show the toolbar only when the text-area has focus in it.
In angular 7, after changing the value of the options, the toolbar doesn't hide/show.
COMPONENT:
public mdeOptions = {
spellChecker: false,
status: false,
}
test() {
this.mdeOptions = {...this.mdeOptions, ...{toolbar: false}};
}
HTML:
<simplemde [(ngModel)]="pregunta.cabecera" (options)="mdeOptions">
The text was updated successfully, but these errors were encountered: