diff --git a/css/index.css b/css/index.css index 119d6e8..013a073 100644 --- a/css/index.css +++ b/css/index.css @@ -144,4 +144,10 @@ .maskCanvasMonitor .overMaskCanvasMonitor .initImgCanvasMonitor { position: absolute; +} + +.strokeText { + -webkit-text-stroke: 1px #888; + font-size: 150%; + color: #000; } \ No newline at end of file diff --git a/js/index.js b/js/index.js index ebe7a54..655346e 100644 --- a/js/index.js +++ b/js/index.js @@ -130,6 +130,7 @@ function startup() { changeOverMask(); changeOverMaskPx(); changeHiResFix(); + changeEnableErasing(); document.getElementById("overlayCanvas").onmousemove = mouseMove; document.getElementById("overlayCanvas").onmousedown = mouseDown; document.getElementById("overlayCanvas").onmouseup = mouseUp; @@ -197,7 +198,7 @@ function imageAcceptReject(x, y, data) { div.style.top = parseInt(y + data.parameters.height) + "px"; div.style.width = "150px"; div.style.height = "50px"; - div.innerHTML = " of " + div.innerHTML = " of " document.getElementById("tempDiv").appendChild(div); document.getElementById("currentImgIndex").innerText = "1"; document.getElementById("totalImgIndex").innerText = totalImagesReturned;