Skip to content

Instantly share code, notes, and snippets.

@alandipert
Created January 5, 2010 06:14
Show Gist options
  • Save alandipert/269186 to your computer and use it in GitHub Desktop.
Save alandipert/269186 to your computer and use it in GitHub Desktop.
$.golf.controller = [
{ route: "/home/*/",
action: function(container, params) {
container.empty().append(new Component.MainPage();
}
},
{ route: function(uri) { return uri.indexOf('x') != -1; },
action: function(container, params) {
container.empty().append(new Component.Blog();
}
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment