This commit is contained in:
Zhuk Viatcheslav
2020-04-30 15:25:10 +03:00
parent 612322146a
commit 6d4f73d0f6
2 changed files with 13 additions and 5 deletions

View File

@@ -83,13 +83,23 @@ function pdfzoomout(){
function resize_plus(){
cnt += 5;
if (window.screen.width >= 560) {
cnt += 5;
}
else{
cnt += 20;
}
newpdfzoom(cnt);
}
function resize_minus(){
cnt -= 5;
if (window.screen.width >= 560) {
cnt -= 5;
}
else{
cnt -= 20;
}
newpdfzoom(cnt);
}
@@ -104,8 +114,6 @@ function newpdfzoom(czoom){
}
function getzoom( name ){