Skip to content

Instantly share code, notes, and snippets.

@quirkey
Created November 16, 2010 20:34
Show Gist options
  • Save quirkey/702460 to your computer and use it in GitHub Desktop.
Save quirkey/702460 to your computer and use it in GitHub Desktop.
//
// goal: load in data, then template
//
var nav = $.sammy('#mainNav',function(){
this.use(Sammy.Mustache,'ms');
this.get('#/', function() {
this.load('data/nav.json')
.render('templates/nav.ms') // render will take the previous data as the `data` arg for rendering
.swap();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment