You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The content div, as a result, rendered nothing at all on Safari(web) and iOS (cordova)
The line in the bind-html-compile directive that was causing the rendering issue was Line 22 in angular-bind-html-compile.js $compile(element.contents())(compileScope);
It prevented anything from rendering at all.
I wanted to enable click on just one anchor tag inside $scope.dynamicHTML. I replaced Line 22 above with the following code: $compile(element.contents().find( "a" ))(compileScope);
The $compile in the directive does not work on iOS cordova app, and prevents the HTML from getting rendered at all.
The text was updated successfully, but these errors were encountered: