Skip to content

Commit 76e34f3

Browse files
authored
Fix missing a8m.phoneUS in angular.filter
'phoneUS' filter was not included into main 'angular.filter' module which causes injection error when entire 'angular.filter' module is included into project. As a result 'phoneUS' does not work as expected. Console log: Error: [$injector:unpr] Unknown provider: phoneUSFilterProvider <- phoneUSFilter
1 parent 694d21b commit 76e34f3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/filters.js

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ angular.module('angular.filter', [
2525
'a8m.test',
2626
'a8m.match',
2727
'a8m.split',
28+
'a8m.phoneUS',
2829

2930
'a8m.to-array',
3031
'a8m.concat',

0 commit comments

Comments
 (0)