Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Last active November 24, 2015 18:24
Show Gist options
  • Save khoand0000/48b22e1f9046e57afb93 to your computer and use it in GitHub Desktop.
Save khoand0000/48b22e1f9046e57afb93 to your computer and use it in GitHub Desktop.

For the visual learners like myself....

this:

<div ng-messages="requestForm.email.$error" ng-messages-include="form-messages"></div>

now needs to be:

<div ng-messages="requestForm.email.$error">
    <div ng-messages-include="form-messages"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment