Skip to content

Instantly share code, notes, and snippets.

@kyleondata
Last active December 14, 2015 16:59
Show Gist options
  • Save kyleondata/5118988 to your computer and use it in GitHub Desktop.
Save kyleondata/5118988 to your computer and use it in GitHub Desktop.
Thorax JS Demo
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
</head>
<body>
</body>
</html>
<!-- Grab js deps from cdns -->
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/thorax/2.0.0rc3/thorax.js"></script>
<script src="/ThoraxDemo.js"></script>
var view = new Thorax.View({
greeting: "Hello",
template: Handlebars.compile("{{greeting}} world!")
});
view.appendTo('body');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment