Skip to content

Commit

Permalink
PR #13 - version 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
llulani committed Jan 7, 2019
1 parent 7120ed4 commit 5cc7c96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/ngx-summernote/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-summernote",
"version": "0.6.0",
"version": "0.6.2",
"peerDependencies": {
"@angular/common": ">=6.0.0 <=8.0.0",
"@angular/core": ">=6.0.0 <=8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h3>Summernote editor</h3>
</div>

<div [formGroup]="form">
<div formControlName="html" [ngxSummernote]="config" [ngxSummernoteDisabled]="editorDisabled"></div>
<div formControlName="html" [ngxSummernote]="config" [ngxSummernoteDisabled]="editorDisabled" (blur)="onBlur()"></div>
</div>

<h3>HTML</h3>
Expand Down
4 changes: 4 additions & 0 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ export class AppComponent {
disableEditor() {
this.editorDisabled = true;
}

onBlur() {
console.log('Blur');
}
}

0 comments on commit 5cc7c96

Please sign in to comment.