Thanks Vilem for looking into it and let me know if a hot fix is ever released for this issue.
As for a workaround for others that are finding this same problem... it is not really a "fix" but it stops the error from effecting the page and displaying a message to the user:
Just add this Javascript to the head section of the page and make sure it is as high up in that section as you can put it because it must be called before the JS that is causing the problem!
window.onerror = function(msg, url, lineNumber) {
if (msg.indexOf('Access is denied') >= 0) {
return true;
} else {
return false;
}
};
This check of the error message is to allow other legitimate JS errors to still show up.