Using AngularJS with Scala Play, I\'m getting this error.
Error: Argument \'MainCtrl\' is not a function, got undefined
I\'m try
Remove the [] from the name ([myApp]) of module
[]
angular.module('myApp', [])
And add ng-app="myApp" to the html and it should work.
ng-app="myApp"