mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
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.
10 lines
529 B
Handlebars
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>
|