mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 10:05:27 +08:00
[de,pe,pdfe] minify zoom check record
This commit is contained in:
@ -1247,11 +1247,7 @@ define([
|
||||
this.api.zoomFitToWidth();
|
||||
}
|
||||
} else {
|
||||
if (zf > 0) {
|
||||
this.api.zoom(zf);
|
||||
} else {
|
||||
this.api.zoom(100);
|
||||
}
|
||||
this.api.zoom(zf > 0 ? zf : 100);
|
||||
}
|
||||
|
||||
value = Common.localStorage.getItem("de-show-hiddenchars");
|
||||
|
||||
@ -956,11 +956,7 @@ define([
|
||||
this.api.zoomFitToWidth();
|
||||
}
|
||||
} else {
|
||||
if (zf > 0) {
|
||||
this.api.zoom(zf);
|
||||
} else {
|
||||
this.api.zoom(100);
|
||||
}
|
||||
this.api.zoom(zf > 0 ? zf : 100);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -867,11 +867,7 @@ define([
|
||||
this.api.zoomFitToWidth();
|
||||
}
|
||||
} else {
|
||||
if (zf > 0) {
|
||||
this.api.zoom(zf);
|
||||
} else {
|
||||
this.api.zoom(100);
|
||||
}
|
||||
this.api.zoom(zf > 0 ? zf : 100);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user