raw-html.component.ts 346 Bytes
import {Component, Input} from "ng-forward";

@Component({
    selector: "noosfero-raw-htmlblock",
    templateUrl: 'app/components/noosfero-blocks/raw-html/raw-html.html'
})

export class RawHTMLBlock {

    @Input() block: any;
    @Input() owner: any;

    html: string;

    ngOnInit() {
        this.html = this.block.settings.html;
    }
}