I am trying to use the angular-seed project (https://github.com/angular/angular-seed) to start a new project. I am trying to add in a new directive.
Created testDirectiv
When including attribute directives inside the opening tag of an HTML element, they must be converted to dashes.
<div test-directive>
Whenever you wanted to use directive on the html, you should just replace capital letter to small case prefix -
with it. Directive normalization process convert that test-directive
to testDirective
while compiling directive.
<div test-directive></div>