root = global ? window angular = root.angular thisApp = angular.module("Client", ["ngCookies"]).config(($routeProvider, $locationProvider) -> $locationProvider.html5Mode true $routeProvider.when("/", controller: "WelcomeCtrl" templateUrl: "<%= asset_path('welcome/index.html') %>" ).otherwise redirectTo: "/" ) # exports root.thisApp = thisApp