2016-06-20 23:34:14 -07:00
|
|
|
// #docregion
|
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
moduleId: module.id,
|
|
|
|
selector: 'inner-html-binding',
|
|
|
|
templateUrl: 'inner-html-binding.component.html',
|
|
|
|
})
|
|
|
|
// #docregion inner-html-controller
|
|
|
|
export class InnerHtmlBindingComponent {
|
2016-09-14 12:11:53 -04:00
|
|
|
// For example, a user/attacker-controlled value from a URL.
|
2016-06-20 23:34:14 -07:00
|
|
|
htmlSnippet = 'Template <script>alert("0wned")</script> <b>Syntax</b>';
|
|
|
|
}
|