This commit is contained in:
Zhuk Viatcheslav
2020-04-29 15:21:05 +03:00
parent 9fac2968c2
commit 50b4cf7381
2 changed files with 3 additions and 3 deletions

View File

@@ -81,12 +81,12 @@ function pdfzoomout(){
var cnt = 100;
function resize_plus(){
var div = document.getElementById("the-canvas");
cnt += 2;
cnt += 4;
div.style.width = cnt+"%";
}
function resize_minus(){
var div = document.getElementById("the-canvas");
cnt -= 2;
cnt -= 4;
div.style.width = cnt+"%";
}
function getzoom(){