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

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

Issue 256553002: Revert "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_style.dart
diff --git a/third_party/pkg/angular/lib/directive/ng_style.dart b/third_party/pkg/angular/lib/directive/ng_style.dart
index bd42fbc7e58ae2bdf680c658da62b6776eb145d1..1bfe9b1eafc8c379f6b918cd4a0d2b298351aa22 100644
--- a/third_party/pkg/angular/lib/directive/ng_style.dart
+++ b/third_party/pkg/angular/lib/directive/ng_style.dart
@@ -7,17 +7,18 @@ part of angular.directive;
* @example
* <span ng-style="{color:'red'}">Sample Text</span>
*/
-@Decorator(
+@NgDirective(
selector: '[ng-style]',
- map: const {'ng-style': '@styleExpression'})
-class NgStyle {
+ map: const { 'ng-style': '@styleExpression'})
+class NgStyleDirective {
final dom.Element _element;
final Scope _scope;
+ final AstParser _parser;
String _styleExpression;
Watch _watch;
- NgStyle(this._element, this._scope);
+ NgStyleDirective(this._element, this._scope, this._parser);
/**
* ng-style attribute takes an expression which evaluates to an
@@ -27,19 +28,18 @@ class NgStyle {
set styleExpression(String value) {
_styleExpression = value;
if (_watch != null) _watch.remove();
- _watch = _scope.watch(_styleExpression, _onStyleChange, collection: true,
- canChangeModel: false);
+ _watch = _scope.watch(_parser(_styleExpression, collection: true), _onStyleChange);
}
_onStyleChange(MapChangeRecord mapChangeRecord, _) {
if (mapChangeRecord != null) {
dom.CssStyleDeclaration css = _element.style;
- fn(MapKeyValue m) =>
- css.setProperty(m.key, m.currentValue == null ? '' : m.currentValue);
+ fn(MapKeyValue kv) => css.setProperty(kv.key, kv.currentValue == null ? '' : kv.currentValue);
- mapChangeRecord..forEachRemoval(fn)
- ..forEachChange(fn)
- ..forEachAddition(fn);
+ mapChangeRecord
+ ..forEachRemoval(fn)
+ ..forEachChange(fn)
+ ..forEachAddition(fn);
}
}
}
« no previous file with comments | « third_party/pkg/angular/lib/directive/ng_src_boolean.dart ('k') | third_party/pkg/angular/lib/directive/ng_switch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698