| Index: third_party/pkg/angular/lib/directive/ng_bind_template.dart
|
| ===================================================================
|
| --- third_party/pkg/angular/lib/directive/ng_bind_template.dart (revision 33054)
|
| +++ third_party/pkg/angular/lib/directive/ng_bind_template.dart (working copy)
|
| @@ -1,16 +1,15 @@
|
| part of angular.directive;
|
|
|
| /**
|
| - * The [NgBindTemplateDirective] specifies that the element text content should
|
| - * be replaced with the interpolation of the template in the ngBindTemplate
|
| - * attribute. Unlike ngBind, the ngBindTemplate can contain multiple {{ }}
|
| - * expressions.
|
| + * The [NgBindTemplateDirective] specifies that the element text content should be replaced with
|
| + * the interpolation of the template in the ngBindTemplate attribute. Unlike ngBind, the
|
| + * ngBindTemplate can contain multiple {{ }} expressions.
|
| */
|
| @NgDirective(
|
| selector: '[ng-bind-template]',
|
| map: const {'ng-bind-template': '@bind'})
|
| class NgBindTemplateDirective {
|
| - final dom.Element element;
|
| + dom.Element element;
|
|
|
| NgBindTemplateDirective(this.element);
|
|
|
|
|