I try not to release updates on Friday’s because I am not always available on the weekends to support any unexpected complications that might arise from an update gone wrong.
You can apply one of the many fixes listed above or you can edit /mint/app/paths/record/js.php yourself. Around line 57 change:
var tag = (document.createElementNS) ? document.createElementNS('http://www.w3.org/1999/xhtml', 'script') : document.createElement('script');
var head = document.getElementsByTagName('head')[0];
tag.type = 'text/javascript';
tag.src = path + '&serve_js';
head.appendChild(tag);
To:
var tag = (document.createElementNS) ? document.createElementNS('http://www.w3.org/1999/xhtml', 'script') : document.createElement('script');
tag.type = 'text/javascript';
tag.src = path + '&serve_js';
/*@cc_on
// Someone set up us the IE
var bases = document.getElementsByTagName('base');
if (bases.length)
{
// All your base are belong to us
this.IEBaseFixId = window.setInterval(function()
{
if (document.body)
{
document.getElementsByTagName('head')[0].appendChild(tag);
window.clearInterval(Mint.IEBaseFixId);
};
}, 50);
return;
};
@*/
document.getElementsByTagName('head')[0].appendChild(tag);