Skip to content

Instantly share code, notes, and snippets.

@knownasilya
Created July 5, 2013 20:33
Show Gist options
  • Save knownasilya/5937064 to your computer and use it in GitHub Desktop.
Save knownasilya/5937064 to your computer and use it in GitHub Desktop.
Routes
App.Router.map(function () {
this.route("index", { path: "/" });
this.resource("map", function () {
this.resource("location", { path: "/:latlng"}, function () {
this.route("summary");
this.route("providers");
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment