angular-froala-wysiwyg-2.7.1
Version:
Angular 2 and Angular 4 bindings for Froala WYSIWYG HTML rich text editor
1 lines • 1.92 kB
Source Map (JSON)
{"version":3,"sources":["../../src/view/view.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAA,EAAW,UAAA,EAAY,QAAA,EAAU,KAAA,EAAsC,MAAO,eAAA,CAAgB;AAGvG;IAKE,6BAAoB,QAAkB,EAAE,OAAmB;QAAvC,aAAQ,GAAR,QAAQ,CAAU;QACpC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC;IACxC,CAAC;IAGA,sBAAI,2CAAU;QADf,mCAAmC;aAClC,UAAe,OAAe;YAC7B,IAAI,CAAC,QAAQ,CAAC,SAAS,GAAG,OAAO,CAAC;QACpC,CAAC;;;OAAA;IAED,6CAAe,GAAf;QACE,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IACI,8BAAU,GAA0B;QAC3C,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;oBACxB,QAAQ,EAAE,cAAc;iBACzB,EAAG,EAAE;KACL,CAAC;IACF,kBAAkB;IACX,kCAAc,GAAmE,cAAM,OAAA;QAC9F,EAAC,IAAI,EAAE,QAAQ,GAAG;QAClB,EAAC,IAAI,EAAE,UAAU,GAAG;KACnB,EAH6F,CAG7F,CAAC;IACK,kCAAc,GAA2C;QAChE,YAAY,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;KAC/B,CAAC;IACF,0BAAC;CA9BD,AA8BC,IAAA;SA9BY,mBAAmB","file":"view.directive.js","sourceRoot":"","sourcesContent":["import { Directive, ElementRef, Renderer, Input, Output, Optional, EventEmitter } from '@angular/core';\n\n\nexport class FroalaViewDirective {\n\n private _element: HTMLElement;\n private _content: any;\n\n constructor(private renderer: Renderer, element: ElementRef) {\n this._element = element.nativeElement;\n }\n\n // update content model as it comes\n set froalaView(content: string){\n this._element.innerHTML = content;\n }\n\n ngAfterViewInit() {\n this.renderer.setElementClass(this._element, \"fr-view\", true);\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: '[froalaView]'\n}, ] },\n];\n/** @nocollapse */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: Renderer, },\n{type: ElementRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'froalaView': [{ type: Input },],\n};\n}\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}