ngText
We use ngText
to modify element's textNode
Syntax
<el data-ng-text="expression => text:string|number" />
Examples
(new NgTemplate( document.body , `<i data-ng-text="foo"></i>` ))
.sync({ foo: "Foo" });
console.log( document.body.innerHTML ); // <i>Foo</i>
HTML gets automatically escaped:
(new NgTemplate( document.body , `<i data-ng-text="foo"></i>` ))
.sync({ foo: "<button>" });
console.log( document.body.innerHTML ); // <i><button></i>