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

Unified Diff: third_party/pkg/angular/lib/directive/ng_cloak.dart

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/lib/directive/ng_cloak.dart
diff --git a/third_party/pkg/angular/lib/directive/ng_cloak.dart b/third_party/pkg/angular/lib/directive/ng_cloak.dart
index a661af8e5377c4c415f5cb2de7487b98fb76ddfa..557d37ddc7af62b868eec94187dfa890aea3cc00 100644
--- a/third_party/pkg/angular/lib/directive/ng_cloak.dart
+++ b/third_party/pkg/angular/lib/directive/ng_cloak.dart
@@ -12,7 +12,7 @@ part of angular.directive;
*
* `ngCloak` works in cooperation with a css. Following is the css rule:
*
- * [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
+ * [ng-cloak], [data-ng-cloak], .ng-cloak {
* display: none !important;
* }
*
@@ -22,11 +22,11 @@ part of angular.directive;
* template it deletes the `ngCloak` element attribute, which makes the compiled
* element visible.
*/
-@NgDirective(selector: '[ng-cloak]')
-@NgDirective(selector: '.ng-cloak')
-class NgCloakDirective {
- NgCloakDirective(dom.Element element) {
+@Decorator(selector: '[ng-cloak]')
+@Decorator(selector: '.ng-cloak')
+class NgCloak {
+ NgCloak(dom.Element element, Animate animate) {
element.attributes.remove('ng-cloak');
- element.classes.remove('ng-cloak');
+ animate.removeClass(element, 'ng-cloak');
}
}
« no previous file with comments | « third_party/pkg/angular/lib/directive/ng_class.dart ('k') | third_party/pkg/angular/lib/directive/ng_control.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698