Skip to content

Instantly share code, notes, and snippets.

@opheliasdaisies
Created February 20, 2014 04:56
Show Gist options
  • Save opheliasdaisies/9107291 to your computer and use it in GitHub Desktop.
Save opheliasdaisies/9107291 to your computer and use it in GitHub Desktop.
"use strict";
var lifeApp = angular.module("lifeApp", [
"ngRoute",
"lifeControllers"
]);
lifeApp.config(["$routeProvider",
function($routeProvider){
$routeProvider.
when("/random", {
templateUrl: "partials/randomBoard.html",
controller: "BoardCtrl"
}).
otherwise({
redirectTo: "/random"
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment