When i click extension icon, then popup open easily. But at the time to open popup active URL not get, when i click on any other popup button then URL set automatically. That issue is faced only in ie, Firefox and chrome are working properly.
When i set alert then i noticed that appAPI.message.addListener(function(msg) function not working on extension onload in ie 10 only, firefox and chrome browser are working properly.
Please help me.
My extension id is 45314
Help get this topic noticed by sharing it on
Twitter,
Facebook, or email.
Twitter,
Facebook, or email.
-
Hello Anil,
I am investigating this and will get back to you tomorrow. -
-
EMPLOYEE
1Hello Anil,
Thank you for reporting your issue. Upon investigation, I can see that the problem relates to the dynamic additions of the src attributes to your img tags in your popup code. We are aware that this causes IE popup code to crash and our dev team have it in their queue to fix though it may take a while as other projects are being completed.
However, there is a simple workaround that works for all browsers, and that is to inject the img tag as well. So taking an example from your popup.html file, specify the tag as:
and the corresponding jquery code as:<a id="myImgt"></a>$('<img></img>')
.attr('src', appAPI.resources.get('image/twitter.png'))
.prependTo('#myImgt'); -
-
-
Loading Profile...




