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

Unified Diff: samples/ui_lib/view/ConveyorView.dart

Issue 10565029: Fix + usages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « samples/tests/samples/total/total_test_lib.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/ui_lib/view/ConveyorView.dart
diff --git a/samples/ui_lib/view/ConveyorView.dart b/samples/ui_lib/view/ConveyorView.dart
index da62fed370805c3c233a523deddef4b42898f285..0a31ca74cf348d62dbc6bed10cc0fb0b0d475725 100644
--- a/samples/ui_lib/view/ConveyorView.dart
+++ b/samples/ui_lib/view/ConveyorView.dart
@@ -86,7 +86,7 @@ class ConveyorView extends CompositeView {
*/
View addChild(View view) {
view.addClass('conveyor-item');
- view.transform = 'translate3d(' + (childViews.length * 100) + '%, 0, 0)';
+ view.transform = 'translate3d(${(childViews.length * 100)}%, 0, 0)';
return super.addChild(view);
}
« no previous file with comments | « samples/tests/samples/total/total_test_lib.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698