AngularJS routing trouble

60 Views Asked by At

The noobest question ever. Here is my code: App.coffee:

window.app = angular.module "my_super_app", [
  'router'
  'ng-rails-csrf'
]

router.coffee:

angular.module "router", ['ngRoute']
  .config ($routeProvider) ->
    $routeProvider
      .when '/', {
        controller: "MainCtrl"
      }
  .controller 'MainCtrl', () ->
    console.log "test"

Whyyyyyy it doesn't work?? Crying and banging my head on table... P.S. I added controller into router intentionally.

1

There are 1 best solutions below

0
On

I got it. It needs ng-view in the layout and template or templateUrl in the when section.