Skip to content

Instantly share code, notes, and snippets.

@hojberg
Created March 25, 2010 21:53
Show Gist options
  • Save hojberg/344176 to your computer and use it in GitHub Desktop.
Save hojberg/344176 to your computer and use it in GitHub Desktop.
(function () {
W.GET("/", function () {
$('#app').html("Hello World");
});
W.GET("#users", function () {
$('#app').html("users");
});
}());
W.onready(function () {
W.route();
});
// -------- VS -------- //
(function () {
W.GET({
"/": function () {
$('#app').html("Hello World");
},
"#users": function () {
$('#app').html("users");
}
});
}());
W.onready(function () {
W.route();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment