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

Unified Diff: sky/examples/touch-demo.sky

Issue 950503002: Fix touch-demo after recent api changes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/touch-demo.sky
diff --git a/sky/examples/touch-demo.sky b/sky/examples/touch-demo.sky
index 2afefd757771ce2cdb336abce339dff534e78814..e9482ab857c40e0f54c1c13e91e13993f6b568cc 100644
--- a/sky/examples/touch-demo.sky
+++ b/sky/examples/touch-demo.sky
@@ -19,7 +19,7 @@ void moveDot(event) {
double x = event.x;
double y = event.y;
- dot.style.setProperty("transform", "translate(${x-50}px,${y-50}px)");
+ dot.style["transform"] = "translate(${x-50}px,${y-50}px)";
}
void main() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698