mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-30 21:25:18 +01:00
refactor(app): rename components, move tinymce to separate file
This commit is contained in:
parent
923e56c3d2
commit
3ac268a096
40 changed files with 199 additions and 136 deletions
18
src/app/pages/editors/tiny-mce/tiny-mce.component.ts
Normal file
18
src/app/pages/editors/tiny-mce/tiny-mce.component.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ngx-tiny-mce-page',
|
||||
template: `
|
||||
<nga-card>
|
||||
<nga-card-body>
|
||||
<ngx-tiny-mce (editorKeyup)="editorKeyup($event)"></ngx-tiny-mce>
|
||||
</nga-card-body>
|
||||
</nga-card>
|
||||
`,
|
||||
})
|
||||
export class TinyMCEComponent {
|
||||
|
||||
editorKeyup($event) {
|
||||
console.info('keyup', $event);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue