Created
May 18, 2010 20:45
-
-
Save ianb/405511 to your computer and use it in GitHub Desktop.
This file contains 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
var app = $.sammy(function () { | |
this.element_selector = '#body'; | |
this.get('#/', function (context) { | |
... stuff to do for the URL /#/ ... | |
}); | |
this.get('#/view/:id', function (context) { | |
... stuff for e.g., /#/view/10 ... | |
... use this.params.id to get "10" ... | |
}); | |
}); | |
$(function () { | |
app.run('#/'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment