Slava
Slava
The [gulp-nunjucks-render](https://github.com/carlitoplatanito/gulp-nunjucks-render) has a better API and allows to specify the path from which all the templates will be resolved: ```js import gulpNunjucksRender from 'gulp-nunjucks-render'; export function buildTemplates() { return...
It fixes #151.
Hey @45kb! Why do you want it to be optional? Angular itself and many other popular modules are using template cache automatically, without the any opt-ins. If user don't want...
Hello! Thank you for this great module. Just stumbled upon this problem too. Trying to use it in WebStorm IDE, but it's not rendering. Are there any news on this?...
@zRosenthal Feel free to use the following dependency `git://github.com/slavafomin/angular-tree-control.git#patch-1` in `package.json` as a temporary solution.
I'm sorry I have no time to work on this PR, but the changes are minimal and it was manually tested and works perfect in production in one of my...
As I see here: https://github.com/wix/angular-tree-control/blob/master/angular-tree-control.js#L294-L305. You are using Angular's `$compile` service to pre-compile the template according to the specified options. This is the source of this bug. Here's the very...
I've [created a PR](https://github.com/wix/angular-tree-control/pull/265) which fixes this issue. It contains the code from my example above and takes into consideration effective interpolation symbols. I believe this is the best approach...
I've updated the PR with cleaner solution: ```js if(!template) { template = '' + '' + '' + '' + '' + '' + '' + ''; template = template...
We should ask @yoavaa ;)