fd-gulp-convert-encoding
Version:
convert file to assigned charset
34 lines (26 loc) • 710 B
JavaScript
/**
* ��ʼ���������
**/
!(function(){
//����ģʽʹ��
if(typeof(asyncResource) !== "undefined" && typeof(asyncResource.qingguo) !== "undefined"){
var jsfiles = asyncResource.qingguo.js;
if(jsfiles.constructor === Array && jsfiles.length > 0){
jEngine.Core.Loader.js.apply(this, jsfiles);
jEngine.Core.Loader.ready(function(){
AppCore.startAll();
});
}else{
//��ֹһЩ�쳣����ķ���
jEngine.Core.Loader.ready(document, function() {
AppCore.startAll();
})
}
} //debugģʽʹ��
else{
//jEngine.Core.Loader.ready === $(document).ready
jEngine.Core.Loader.ready(document, function() {
AppCore.startAll();
})
}
})();