mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
[pdf] Fix bug #77234
This commit is contained in:
committed by
Ilya Kirillov
parent
d64cde525b
commit
80fffd2353
@ -4698,6 +4698,10 @@
|
||||
}
|
||||
|
||||
function checkNeedRedactPage(oPageInfo) {
|
||||
if (!oPageInfo) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (oPageInfo.annots.find(function(annot) {
|
||||
return annot.IsRedact() && annot.GetRedactId();
|
||||
})) {
|
||||
@ -4964,6 +4968,10 @@
|
||||
}
|
||||
|
||||
function checkNeedRedactPage(oPageInfo) {
|
||||
if (!oPageInfo) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (oPageInfo.annots.find(function(annot) {
|
||||
return annot.IsRedact() && annot.GetRedactId();
|
||||
})) {
|
||||
|
||||
Reference in New Issue
Block a user