-
Notifications
You must be signed in to change notification settings - Fork 14
Getting Started
bkardell edited this page Jan 3, 2012
·
20 revisions
The fastest way to get started is to setup and use interpreted mode. Once your changes are all finalized and you are very comfortable using Hitch, you might consider precompiling.
Interpreted Mode (Development) ----------------------- To get started, mark a `link` or `style` tag in your page with the `x-hitch-interpret` attribute.<link rel="stylesheet" href="styles.css" type="text/css" x-hitch-interpret="true" />
<script type="text/javascript" src="hitch-interpret-min.js"></script>
<link rel="stylesheet" href="styles-compiled.css" type="text/css" />
<script type="text/javascript" src="hitch-min.js"></script>
<script type="text/javascript" src="myHitches.js"></script>
<script type="text/javascript" src="styles-compiled.js"></script>