fixed bug in not fully functional browsers, jquery loaded after ie.js, should be before

This commit is contained in:
coderaiser 2012-12-17 06:27:12 -05:00
parent 922fd50b5b
commit 2edcdc4810
5 changed files with 25 additions and 10 deletions

View file

@ -238,10 +238,11 @@ CloudClient.init = function(){
if(!document.body.scrollIntoViewIfNeeded){
this.OLD_BROWSER = true;
DOM.jsload(CloudClient.LIBDIRCLIENT + 'ie.js',
function(){
DOM.jqueryLoad( lFunc );
});
var lSrc = CloudClient.LIBDIRCLIENT + 'ie.js';
DOM.jqueryLoad(
DOM.retJSLoad(lSrc, lFunc)
);
}else
lFunc();
};