Eric MORAND

Results 165 comments of Eric MORAND

@juliangarnier what if I only want to stop one of the animations and not all of them? pause() will only pause the animation and let it hanging around in memory.

I would add: * Written in TypeScript and exposing definitions * Remove confusion between options passed to Browserify and options passed to the underlying module-deps That's a very interesting issue...

Thanks for opening the issue, I was about to. In case someone is looking for a workaround, I had success with using `rollup/plugin-replace` the following way: ```js replacePlugin({ values: {...

@jzuleger , twigjs doesn't support the `filter` filter if I'm not mistaken. If you are looking for a TypeScript/JavaScript Twig implementation that supports the `filter` filter, maybe you can give...

Well, based on the source code for the `date` filter, I assume the second argument is not supported: ```` date: function(value, params) { var date = Twig.functions.date(value); var format =...

I was sure it would at least throw a syntax error with TwigPHP but it actually works perfectly: https://twigfiddle.com/v1f4cm

I confirm that TwigPHP "and" token only evaluates the right operand if the left one is false.

In TwigPHP, nl2br filter is considered safe if the escaping strategy is "html" - the default: https://github.com/twigphp/Twig/blob/45990c3644032f255824a6a3819ba5d828236eef/lib/Twig/Extension/Core.php#L159 Removing the escape should fix the issue. It's breaking the test because nl2br...

Twig.js doesn't support Twig comparison rules. They are quite complex (and arguably debatable) because Twig inherits them from PHP.