RSS Git Download  Clone
Raw View History
Blames found: 8 Mode: application/typescript Binary: false


Hang on, we reloading big blames...
import {Directive, Input, Injectable, ViewContainerRef, OnInit, OnChanges, SimpleChanges} from '@angular/core';
import { CompileHtmlService } from './CompileHtmlService'; @Directive({ selector: '[p3xCompileHtml]' }) @Injectable()
export class CompileHtmlAttribute implements OnInit, OnChanges{
@Input('p3xCompileHtml') p3xHtml: string; @Input() p3xCompileHtmlRef: any;
update() {
this.service.compile({ template: this.p3xHtml, container: this.container, ref: this.p3xCompileHtmlRef }) }
ngOnInit() { this.update(); } ngOnChanges(changes: SimpleChanges) { this.update(); }
constructor( private container: ViewContainerRef, private service: CompileHtmlService ) {} }