]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/marc-edit/rich-editor.component.ts
LP1834665 Angular catalog MARC flat text editor
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / marc-edit / rich-editor.component.ts
1 import {Component, Input, Output, OnInit, AfterViewInit, EventEmitter,
2     OnDestroy} from '@angular/core';
3 import {IdlService} from '@eg/core/idl.service';
4 import {OrgService} from '@eg/core/org.service';
5
6 /**
7  * MARC Record rich editor interface.
8  */
9
10 @Component({
11   selector: 'eg-marc-rich-editor',
12   templateUrl: './rich-editor.component.html',
13   styleUrls: ['rich-editor.component.css']
14 })
15
16 export class MarcRichEditorComponent implements OnInit {
17
18     constructor(
19         private idl: IdlService,
20         private org: OrgService
21     ) {
22     }
23
24     ngOnInit() {}
25 }
26
27
28