Skip to content

Instantly share code, notes, and snippets.

@CodeOfficer
Created June 21, 2010 21:43
Show Gist options
  • Save CodeOfficer/447545 to your computer and use it in GitHub Desktop.
Save CodeOfficer/447545 to your computer and use it in GitHub Desktop.
;(function($) {
var app = $.sammy(function() {
this.location_proxy = new Sammy.DataLocationProxy(this);
this.get('#/', function() {
$('#main').text('');
});
this.get('#/test', function() {
$('#main').text('Hello World');
});
});
$(function() {
app.run()
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment