|
@@ -63,7 +63,7 @@ export function getLodop(oOBJECT,oEMBED){
|
|
|
var isIE = (navigator.userAgent.indexOf('MSIE')>=0) || (navigator.userAgent.indexOf('Trident')>=0);
|
|
|
if (needCLodop()) {
|
|
|
try{ LODOP=getCLodop();} catch(err) {};
|
|
|
- if (!LODOP && document.readyState!=="complete") {alert("C-Lodop没准备好,请稍后再试!"); return;};
|
|
|
+ if (!LODOP && document.readyState!=="complete") {console.log("C-Lodop没准备好,请稍后再试!"); return;};
|
|
|
if (!LODOP) {
|
|
|
// if (isIE) document.write(strCLodopInstall); else
|
|
|
// document.documentElement.innerHTML=strCLodopInstall+document.documentElement.innerHTML;
|
|
@@ -117,6 +117,6 @@ export function getLodop(oOBJECT,oEMBED){
|
|
|
|
|
|
//===========================================================
|
|
|
return LODOP;
|
|
|
- } catch(err) {alert("getLodop出错:"+err);};
|
|
|
+ } catch(err) {console.log("getLodop出错:"+err);};
|
|
|
};
|
|
|
|