Damir

Results 8 comments of Damir

I have the same issue. When doing web publish using the command line, the NLog.config is not transformed in the publish directory but bin/NLog.config and obj/NLog.config are transformed. If you...

I have a modified version of solution suggested by @activebiz. First we have to gather all the routes from all modules and after that we can use the service to...

I agree that loading modules in advance could cause performance issues and is a very hacky. I also agree that the solution @heruan proposed is more elegant and not that...

I've forked a route-mapper and handled the problem I mentioned before. If someone needs it: https://github.com/tdamir/aurelia-route-mapper

I've been playing with this a little bit and compose.modelChanged is called twice but only for some items. I've updated the sample app so now on first navigation, 100 items...

The observation is with `model.bind="{text: $item.text}` and it looks like `model.one-time` solves the problem. Thanks!

I agree that `` looks fine. It activates the view model because model changed (when used like: `model.bind="{text: $item.text}`). I'll be more careful from now when binding object literal. Sorry...

@StrahilKazlachev I understand. Do you have maybe idea, in case of `model.bind="{text: $item.text}`, why is modelChanged called only for some items? Is that expected behavior?