Fix minor loading issue.

This commit is contained in:
Paulo Veiga
2009-06-14 13:02:27 +00:00
parent 66d7986d54
commit 11ee13fb60
7 changed files with 80 additions and 92 deletions

View File

@@ -68,10 +68,6 @@ core.assert = function(assert, message)
};
core.findElement = function(name)
{
return $(name);
}
Math.sign = function(value)
{

View File

@@ -88,16 +88,4 @@ window.onerror = function(sMsg, sUrl, sLine)
wLogger.fatal(msg);
return true;
};
window.__coreLoad = function()
{
if (window.afterCoreLoading)
{
window.afterCoreLoading();
} else
{
setTimeout("window.__coreLoad()", 2000);
}
}
window.__coreLoad();
};