angularjs - ng-click breaks the App if triggered by clikcing element from Shadow Dom -


the idea keep svgs in shadow dom , insert them 'use' tag. issue in ie11 when adding ng-click elements encapsulating svgs.

<a ng-href="#/settings/profile">      <svg xmlns="http://www.w3.org/2000/svg" class="icon icon--medium" name="cog">          <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#cog"></use>      </svg>  </a>

same happens on clicking tag or element attached ng-click. after problem occurs, ui stops responding. hard page reload fixes issue.

observed in ie only. chrome works fine.

any idea can be?

try add pointer-events: none; svg elements


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -