Reinis Vesers
Reinis Vesers
@randdusing see this [issue](https://github.com/urish/angular-moment/issues/89). The problem is that angular filters only refresh whenever the values that are passed into it (moment or string) are changed. I do not think that...
@urish although, [angular-translate](http://angular-translate.github.io/docs/#/guide) does implement this functionality. They have a `{{ 'TITLE' | translate }}` filter, which as only argument takes in a string (translation id from translation table) and...
@urish I created a [plnkr](http://plnkr.co/edit/GQm4VkYQ1i3CEG2Kcp8u?p=preview), which shows the problem. Only the date filters added after locale change get the new locale. Could you please point out to me, what I'm...
@randdusing, yes, I understand that if you put bind the filter to a function on an object (in this case, the toISOString()), the filters watch has no way of knowing...
@urish, thanks! This will make my work a lot easier :+1: It just would be nice to have if the locale change affected all existing moment() objects globally out of...
ReinforcedTypings does not work with source files, it works with compiled assemblies, which dont have filename or linenumber information, so it would be complex to try and work out what...
dont know about Visual Studio, but Visual Studio Code re-analyzes all of the deleted/readded typescript files. And since the generated ones can easily be into hundreds, its Typescript engine often...
I dug through the issues and found [this one](https://github.com/reinforced/Reinforced.Typings/issues/35), where you provide [an example](https://gist.github.com/pavel-b-novikov/1285b623aba37307a855385b4144ceac) on running the generation manually. Wrapping that code with a console app and some extra code...
You need to transpile it with babel yourself to support IE11. If you are using babel already, but with the `useBuiltIns: 'usage'` option rather then pulling all of the available...
Hi, yeah, I remember having this issue way back in 2016 (seems like a whole decade ago :) ), I did not solve it, i. e. this library does not...