summaryrefslogtreecommitdiffstats
path: root/templates/activities/compose.html
diff options
context:
space:
mode:
authorTAKAHASHI Shuuji2022-12-12 01:25:48 +0900
committerGitHub2022-12-11 09:25:48 -0700
commit6d473a83cc791daaaf8ecadb06315be8594e2990 (patch)
tree51c3f1ff0606816bbbb997b189197d7dda48bc34 /templates/activities/compose.html
parent9405698e3c7817b353b31fb7c2c3b4fea2d56783 (diff)
downloadtakahe-6d473a83cc791daaaf8ecadb06315be8594e2990.tar.gz
takahe-6d473a83cc791daaaf8ecadb06315be8594e2990.tar.bz2
takahe-6d473a83cc791daaaf8ecadb06315be8594e2990.zip
Add the character counter next to the Post button (#152)
Diffstat (limited to 'templates/activities/compose.html')
-rw-r--r--templates/activities/compose.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/activities/compose.html b/templates/activities/compose.html
index 7065863..9587559 100644
--- a/templates/activities/compose.html
+++ b/templates/activities/compose.html
@@ -34,7 +34,8 @@
{% endif %}
</fieldset>
<div class="buttons">
- <button>{% if post %}Save Edits{% elif config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
+ <span id="character-counter">{{ config.post_length }}</span>
+ <button id="post-button">{% if post %}Save Edits{% elif config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
</div>
</form>
{% endblock %}