When following ngMessage tutorial(http://www.tuicool.com/articles/biMVfq) to build form validation, I encountered a problem when including a remote template file by:
<div ng-messages="userForm.emailAddress.$error"
ng-messages-include="error-messages.html"></div>
solution: delete ".html"
<div ng-messages="userForm.emailAddress.$error"
ng-messages-include="error-messages"></div>
then it works.