blob: 4a3f9fc2a8e05dd195722a53dc85db5090cbc40e (
plain)
1
2
3
4
5
6
7
|
document.addEventListener( 'DOMContentLoaded', function() {
// Prevent aggressive iframe caching in Firefox
var statsIframe = document.getElementById( 'stats-iframe' );
if ( statsIframe ) {
statsIframe.contentWindow.location.href = statsIframe.src;
}
} );
|