Skip to content

Commit

Permalink
Fixed box width/height
Browse files Browse the repository at this point in the history
Fixed box width/height (.w and .h instead of .width and .height) on line 260
  • Loading branch information
eftibug committed Oct 28, 2014
1 parent ed8d9cc commit a792d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bezier/src.js
Expand Up @@ -257,7 +257,7 @@ require([

ready(function(){
var box = domgeom.getContentBox(dom.byId("surface"));
surface = gfx.createSurface("surface", box.width, box.height);
surface = gfx.createSurface("surface", box.w, box.h);
initSurface();
reset();

Expand Down

0 comments on commit a792d8f

Please sign in to comment.