naorye
naorye
Got exactly this problem now. How did it work in previous versions?
Look on the following implementation of angular.js (1.2.14): ``` ... (line 17559) var ngBindHtmlDirective = ['$sce', '$parse', function($sce, $parse) { return function(scope, element, attr) { element.addClass('ng-binding').data('$binding', attr.ngBindHtml); var parsed =...
I think you can use the $injector.has() method to check for dependency. This way you can distinguish between $sce and $sanitize. But it is added only on 1.1.5. Maybe you...
Hi Pasvaz, I really don't think that html-unsafe directive is a good thing to add for two reasons: 1. Using unsafe html is not a good practice. 2. It is...
@Pasvaz, It is more easier to use a built in directive than write a custom filter. Bad practice is something I don't want to allow easily in my plugin. Therefor...
@Pasvaz Sounds fine. Do you need help in something?
@Pasvaz You are right. Totally agreed.
I don't think this is related to multi tenant. I am using nestjs and it doesn't work as well.
@jeffbski Hi, I had another case where I needed to wait for an action to complete. I have the following logic: ``` createLogic({ type: actions.addCardAndBuyItems, async process({ action }, dispatch,...
It has been pass more than a year :) any news regarding waiting for an action to complete? I have another use case, I'd like to fetch data (using a...