Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: third_party/pkg/angular/lib/directive/ng_bind_template.dart

Issue 1058283006: Update pubspecs and dependencies to get pkgbuild tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 part of angular.directive;
2
3 /**
4 * The [NgBindTemplateDirective] specifies that the element text content should
5 * be replaced with the interpolation of the template in the ngBindTemplate
6 * attribute. Unlike ngBind, the ngBindTemplate can contain multiple {{ }}
7 * expressions.
8 */
9 @NgDirective(
10 selector: '[ng-bind-template]',
11 map: const {'ng-bind-template': '@bind'})
12 class NgBindTemplateDirective {
13 final dom.Element element;
14
15 NgBindTemplateDirective(this.element);
16
17 set bind(value) {
18 element.text = value;
19 }
20 }
OLDNEW
« no previous file with comments | « third_party/pkg/angular/lib/directive/ng_bind_html.dart ('k') | third_party/pkg/angular/lib/directive/ng_class.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698