mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
[de][pdf][js-api] Fix build sdkjs
This commit is contained in:
@ -331,7 +331,6 @@ function NativeOpenFileData(data, version, xlsx_file_path, options)
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Api = Api.getJsApi();
|
||||
}
|
||||
|
||||
|
||||
@ -8320,11 +8320,11 @@
|
||||
}
|
||||
else if ("percent" === sType) {
|
||||
nType = tblwidth_Pct;
|
||||
nW = private_GetInt(nValue, null, null);
|
||||
nW = AscBuilder.private_GetInt(nValue, null, null);
|
||||
}
|
||||
else if ("twips" === sType) {
|
||||
nType = tblwidth_Mm;
|
||||
nW = private_Twips2MM(nValue);
|
||||
nW = AscBuilder.private_Twips2MM(nValue);
|
||||
}
|
||||
|
||||
return new CTableMeasurement(nType, nW);
|
||||
|
||||
@ -32087,5 +32087,8 @@
|
||||
window['AscBuilder']["Word"] = window['AscBuilder'].Word = window['AscBuilder'].Word || {};
|
||||
AscBuilder.Word["Api"] = AscBuilder.Word.Api = Api;
|
||||
|
||||
AscBuilder.private_GetInt = private_GetInt;
|
||||
AscBuilder.private_Twips2MM = private_Twips2MM;
|
||||
|
||||
}(window, null));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user