Skip to content

Commit

Permalink
fix issue with module renaming 'cat.directives.input' vs 'cat.directi…
Browse files Browse the repository at this point in the history
…ves.inputs'
  • Loading branch information
Harald Vogl committed Nov 2, 2015
1 parent a65e86a commit 90605e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/javascript/directives/cat-input-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ angular.module('cat.directives.inputGroup', [])

/**
* @ngdoc directive
* @name cat.directives.inputs:catInputGroup
* @name cat.directives.inputGroup:catInputGroup
*/
.directive('catInputGroup', function CatInputGroupDirective(catValidationService) {
return {
Expand Down
4 changes: 2 additions & 2 deletions src/main/javascript/directives/cat-input.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use strict';

angular.module('cat.directives.inputs', [])
angular.module('cat.directives.input', [])

/**
* @ngdoc directive
* @name cat.directives.inputs:input
* @name cat.directives.input:input
*/
.directive('input', function CatInputDirective() {
return {
Expand Down

0 comments on commit 90605e2

Please sign in to comment.