__flash__removeCallback
В одном из мудулей для joomla есть флэш плеер, и при анлоаде страницы возникает ошибка в коде
function __flash__removeCallback(instance, name) {
instance[name] = null;
}
instance[name] = null;
}
instance в данном случае оказывается null, но где этот код я найти не смог. Поэтому чтобы эта ошибка не мешала сёрфить сайт, следует добавить:
window.addEvent('beforeunload', function() {
window.__flash__removeCallback =
(function() {
return function(instance, name) {
if (instance) instance[name] = null;
}; // IE 6 dangling semicolon needed
})(); // force another closure to prevent IE memory leaks
});
window.__flash__removeCallback =
(function() {
return function(instance, name) {
if (instance) instance[name] = null;
}; // IE 6 dangling semicolon needed
})(); // force another closure to prevent IE memory leaks
});