zulip/static/templates/topic_edit_form.handlebars
Aastha Gupta f900f955c0 message edit: show spinner on topic change.
On clicking the checkbox in topic edit form, display a spinner and
hide the cancel icon.  Also, do not display any success message.

Fixes #8793.
2018-03-23 07:21:22 -07:00

10 lines
529 B
Handlebars

{{! Client-side Mustache template for rendering the topic edit form. }}
<form id="topic_edit_form" class="form-horizontal">
<input type="text" value="" class="inline_topic_edit header-v" id="inline_topic_edit" />
<button type="button" class="topic_edit_save primary"><i class="icon-vector-ok"></i></button>
<button type="button" class="topic_edit_cancel primary"><i class="icon-vector-remove"></i></button>
<div class="topic_edit_spinner"></div>
<div class="alert alert-error edit_error hide"></div>
</form>