I\'m trying to use the angular-seed template with the default settings. In controllers.js I use
controllers.js
angular.module(\'myApp.controllers\', []). control
This is the proper way:
angular.module('myApp.controllers', []); angular.module('myApp.controllers').controller('MyCtrl1', ['$scope', function($scope) { }]);