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

Unified Diff: client/view/SliderMenu.dart

Issue 8360025: Move the individual property definitions from client/base/Css to CSSStyleDeclaration. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 9 years, 2 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
« no previous file with comments | « client/view/PagedViews.dart ('k') | client/view/view.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/view/SliderMenu.dart
diff --git a/client/view/SliderMenu.dart b/client/view/SliderMenu.dart
index c18db2f0dc0eda5dd81524f7799dda6cb51e3df6..19f3eb8f311a96ab76fcb93de06b7ede7e80195d 100644
--- a/client/view/SliderMenu.dart
+++ b/client/view/SliderMenu.dart
@@ -164,7 +164,7 @@ class SliderMenu extends View {
// triangle) set its width the push the triangle to where we want it.
String duration = animate ? '.3s' : '0s';
final triangle = node.query('.sm-triangle');
- Css.setTransitionDuration(triangle.style, duration);
+ triangle.style.transitionDuration = duration;
FxUtil.setWebkitTransform(triangle, x, 0);
}
}
« no previous file with comments | « client/view/PagedViews.dart ('k') | client/view/view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698