function addSvg(){$("img.svg").each(function(){var n=$(this),t=n.attr("id"),i=n.attr("class"),r=n.attr("src");$.get(r,function(r){var u=$(r).find("svg");typeof t!="undefined"&&(u=u.attr("id",t));typeof i!="undefined"&&(u=u.attr("class",i+" replaced-svg"));u=u.removeAttr("xmlns:a");n.replaceWith(u);n.show()},"xml")})}$(function(){addSvg();$(".modal").on("shown.bs.modal",function(){addSvg()})})