0

I found peculiar issue in IE9 with Adobe Experience Manager(Adobe CMS Platform), Angular JS ng-app on body attribute is removed when I load the test and target(Adobe tracking platform) js file. Can any of you suggest fix for the same. And found it works fine with IE10+, Chrome & Firefox. I have tried rename all directive from "ng-app" to "data-ng-app" but this also still not working for me.

2 Answers2

0

There are a few other issues with IE9, such as loading XMLHttp requests and also some page expiring stuff:

link to similar stackoverflow q.

There may be also some console logging:

logging

I've seen some other stuff and does the IE9 console tell you anything? If mbox is causing you issues then you can place an error handling around that module, or remove the inclusion of the module until you have resolved other problems.

Community
  • 1
  • 1
PeterS
  • 2,818
  • 23
  • 36
0

I found that the below code is blocking in IE9 and commenting on the below code in main controller fixed the issue now.

$locationProvider.html5Mode(true);

I'm not sure why it is breaking on this. Even base tag issue not happening after commenting the above script.