aboutsummaryrefslogtreecommitdiffstats
path: root/demos/effect
diff options
context:
space:
mode:
Diffstat (limited to 'demos/effect')
-rw-r--r--demos/effect/easing.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/effect/easing.html b/demos/effect/easing.html
index 567112ac1..8fa0ed88f 100644
--- a/demos/effect/easing.html
+++ b/demos/effect/easing.html
@@ -11,7 +11,7 @@
float: left;
margin-left: 10px;
width: 100px;
- height: 160px;
+ height: 120px;
}
</style>
<script type="text/javascript">
@@ -28,7 +28,7 @@
var graph = $("<div/>").addClass("graph").appendTo("#graphs");
$("<div/>").text(++i + ". " + name).appendTo(graph);
- var canvas = $("<canvas/>").appendTo(graph)[0]
+ var canvas = $("<canvas/>").width(100).height(100).appendTo(graph)[0]
canvas.width = 100;
canvas.height = 135;
var ctx = canvas.getContext("2d");