expand honk form when editing or previewing
This commit is contained in:
parent
878c3c28e9
commit
e0dab7207f
|
@ -1,6 +1,6 @@
|
|||
<p id="honkformhost">
|
||||
<button onclick="showhonkform(); return false"><a href="/newhonk">it's honking time</a></button>
|
||||
<form id="honkform" action="/honk" method="POST" enctype="multipart/form-data" style="display: none">
|
||||
<form id="honkform" action="/honk" method="POST" enctype="multipart/form-data" {{ if not .IsPreview }}style="display: none"{{ end }}>
|
||||
<input type="hidden" name="CSRF" value="{{ .HonkCSRF }}">
|
||||
<input type="hidden" name="updatexid" value = "{{ .UpdateXID }}">
|
||||
<input type="hidden" name="rid" id="ridinput" value="{{ .InReplyTo }}">
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{{ template "honkform.html" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ if .HonkCSRF }}
|
||||
{{ if and .HonkCSRF (not .IsPreview) }}
|
||||
<div class="info" id="refreshbox">
|
||||
<p><button onclick="refreshhonks(this)">refresh</button><span></span>
|
||||
</div>
|
||||
|
|
1
web.go
1
web.go
|
@ -959,6 +959,7 @@ func edithonkpage(w http.ResponseWriter, r *http.Request) {
|
|||
templinfo["Honks"] = honks
|
||||
templinfo["Noise"] = noise
|
||||
templinfo["ServerMessage"] = "honk edit"
|
||||
templinfo["IsPreview"] = true
|
||||
templinfo["UpdateXID"] = honk.XID
|
||||
if len(honk.Donks) > 0 {
|
||||
templinfo["SavedFile"] = honk.Donks[0].XID
|
||||
|
|
Loading…
Reference in New Issue