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/posts.html | |
parent | faee9db270a22a42e45210529c7998dcede0087b (diff) |
dont write to cache if local actor
Diffstat (limited to 'static/posts.html')
-rw-r--r-- | static/posts.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/posts.html b/static/posts.html index ab15aeb..9e3e8ce 100644 --- a/static/posts.html +++ b/static/posts.html @@ -21,7 +21,7 @@ media = document.getElementById("media-{{ .Id }}") if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "image"){ var img = document.createElement("img"); - img.style = "float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px; cursor: move;" + img.style = "float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px; cursor: pointer;" img.setAttribute("id", "img") img.setAttribute("main", "1") img.setAttribute("enlarge", "0") @@ -85,7 +85,7 @@ media = document.getElementById("media-{{ .Id }}") if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "image"){ var img = document.createElement("img"); - img.style = "float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px; cursor: move;" + img.style = "float: left; margin-right: 10px; margin-bottom: 10px; max-width: 250px; max-height: 250px; cursor: pointer;" img.setAttribute("id", "img") img.setAttribute("main", "1") img.setAttribute("enlarge", "0") |