Is it possible to create two directives with the same module name? Having this two files
angular.module('fabTemplate', [])
.directive('fabGallery', [function () {
....
and
angular.module('fabTemplate', [])
.directive('fabVideo', [function () {
...
The second directive will not be recognised.
<fab-video />
does not render anything. By changing the module name works though.
AngularJS's documentation says that the parameter name (first param of module "method")
The name of the module to create or retrieve.
I suppose that should work then... :S Angular doesn't print anything into the console