Created
May 24, 2012 04:10
-
-
Save stephenvisser/2779371 to your computer and use it in GitHub Desktop.
Default page for Spine.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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<title>App</title> | |
<link rel="stylesheet" href="/application.css" type="text/css" charset="utf-8"> | |
<script src="/application.js" type="text/javascript" charset="utf-8"></script> | |
<script type="text/javascript" charset="utf-8"> | |
var jQuery = require("jqueryify"); | |
var exports = this; | |
jQuery(function(){ | |
var App = require("index"); | |
exports.app = new App({el: $("body")}); | |
}); | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment