This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
FilterProvider error with 1.3.3 ( fine in 1.3.2 ) #10110
Closed
Description
Hello,
I have upgraded my app to 1.3.3 and see different behavior compared to 1.3.2 with regards to filters. Our filters are named with a 'dot' in them like this.
angular.module('emc-ui').filter('emcui.Lowernospace', function(){...});
And we use them like this.
{{'HELLO WORLD' | emcui.Lowernospace}}
This works fine in 1.3.2, but in 1.3.3 I get this error:
Error: [$injector:unpr] Unknown provider: emcuiFilterProvider <- emcuiFilter
However, if I remove the 'emcui.' from the filter and just call it 'Lowernospace' then it works fine with 1.3.3.
So my guess is that somehow the lookup of filters with dots in their name is a new issue to 1.3.3.