diff options
author | FChannel <=> | 2021-01-28 12:31:44 -0800 |
---|---|---|
committer | FChannel <=> | 2021-01-28 12:31:44 -0800 |
commit | ee3c47a5b2251380ded1239b149fd1f6e6514bfb (patch) | |
tree | 4464e74060f84e47ef19a8449cdce02f4307ee0f /static/js | |
parent | faee9db270a22a42e45210529c7998dcede0087b (diff) |
dont write to cache if local actor
Diffstat (limited to 'static/js')
-rw-r--r-- | static/js/footerscript.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/js/footerscript.js b/static/js/footerscript.js index bd36daa..b68c3b4 100644 --- a/static/js/footerscript.js +++ b/static/js/footerscript.js @@ -7,7 +7,7 @@ imgArray.forEach(function(img, i){ { var attachment = img.getAttribute("attachment") img.setAttribute("enlarge", "1"); - img.setAttribute("style", "float: left; margin-right: 10px; cursor: move;"); + img.setAttribute("style", "float: left; margin-right: 10px; cursor: pointer;"); img.src = attachment } else @@ -16,12 +16,12 @@ imgArray.forEach(function(img, i){ img.setAttribute("enlarge", "0"); if(img.getAttribute("main") == 1) { - img.setAttribute("style", "float: left; margin-right: 10px; max-width: 250px; max-height: 250px; cursor: move;"); + img.setAttribute("style", "float: left; margin-right: 10px; max-width: 250px; max-height: 250px; cursor: pointer;"); img.src = preview } else { - img.setAttribute("style", "float: left; margin-right: 10px; max-width: 125px; max-height: 125px; cursor: move;"); + img.setAttribute("style", "float: left; margin-right: 10px; max-width: 125px; max-height: 125px; cursor: pointer;"); img.src = preview } } |