Created
September 23, 2011 01:52
-
-
Save delagoya/1236574 to your computer and use it in GitHub Desktop.
Example of problem with fabric.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="js/jquery.js" type="text/javascript"></script> | |
<script src="js/fabric.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<canvas id="canvas" width="300" height="300" style="border: 1px solid #222" ></canvas> | |
<script type='text/javascript'> | |
var cnv; | |
cnv = fabric.Canvas("canvas"); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment