Stuart Wright
Well-known member
I want to add this script into Xenforo. Probably near the end.
It uses the Modernizer javascript which I included in the PAGE_CONTAINER template.
I have popped the above code at the end of page_container_js_body, but I'm expecting there is a better way to do this. Like in a hook or something?
Thanks
It swaps out SVGs with PNGs for browsers which don't support SVGs.if (!Modernizr.svg) {
$('img[src$=".svg"]').each(function()
{
$(this).attr('src', $(this).attr('src').replace('.svg', '.png'));
});
}
It uses the Modernizer javascript which I included in the PAGE_CONTAINER template.
I have popped the above code at the end of page_container_js_body, but I'm expecting there is a better way to do this. Like in a hook or something?
Thanks