How do I configure a grails2.4 application (asset pipeline) with Angular js. (without using any plugins)
So far, this is what I have and it doesnt seem to work.
I put angular.min.js in the folder grails-app/assets/javascripts
and I did this in the gsp
`<asset:javascript src="angular.min.js" />
<asset:javascript src="ui-bootstrap-tpls-0.9.0.min.js" />`
and
`<html ng-app="VTPaceApp" novalidate>`
when I did this {{ "Your's," + " truly" }}
, I dont see any angular effect.
I've also tried putting //= require /angular/angular
in application.js and that did not work either.
Thanks.