Revert "Add character count as you type"

This reverts commit fbc4abf85d.
This commit is contained in:
Chris Hill-Scott
2016-06-20 16:00:42 +01:00
parent be80c501d7
commit d2b4dd5007
7 changed files with 12 additions and 79 deletions

View File

@@ -18,14 +18,7 @@
{{ textbox(form.name, width='1-1', hint='Your recipients wont see this') }}
</div>
<div class="column-two-thirds">
{{ textbox(
form.template_content,
highlight_tags=True,
character_count=True,
width='1-1',
service_name=current_service.name,
rows=5
) }}
{{ textbox(form.template_content, highlight_tags=True, width='1-1', rows=5) }}
{{ page_footer(
'Save',
delete_link=url_for('.delete_service_template', service_id=current_service.id, template_id=template_id) if template_id or None,