mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
In move_topic modal, Renamed inline_topic_edit to move_messages_edit_topic to be more specific selector as inline_topic_edit is also used in message header. Additionally, Removed id inline_topic_edit as it was only used in zulip.css instead used `.inline_topic_edit` selector as that element also have class with same name inline_topic_edit. Fixes #24805
11 lines
652 B
Handlebars
11 lines
652 B
Handlebars
{{! Client-side Handlebars template for rendering the topic edit form. }}
|
|
|
|
<form id="topic_edit_form">
|
|
<input type="text" value="" class="inline_topic_edit header-v"
|
|
autocomplete="off" maxlength="{{ max_topic_length }}" />
|
|
<button type="button" class="topic_edit_save small_square_button animated-purple-button"><i class="fa fa-check" aria-hidden="true"></i></button>
|
|
<button type="button" class="topic_edit_cancel small_square_button small_square_x"><i class="fa fa-remove" aria-hidden="true"></i></button>
|
|
<div class="alert alert-error edit_error" style="display: none"></div>
|
|
<div class="topic_edit_spinner"></div>
|
|
</form>
|