allowTemplating method - NodeValidatorBuilder class - dart:html library (original) (raw)

description

void allowTemplating()

Allow templating elements (such as and template-related attributes.

This still requires other validators to allow regular attributes to be bound (such as allowHtml5).

Implementation

void allowTemplating() {
  add(new _TemplatingNodeValidator());
}