mirror of
https://github.com/zulip/zulip.git
synced 2025-11-08 16:01:58 +00:00
@@ -6,6 +6,7 @@ import render_add_saved_snippet_modal from "../templates/add_saved_snippet_modal
|
|||||||
import render_confirm_delete_saved_snippet from "../templates/confirm_dialog/confirm_delete_saved_snippet.hbs";
|
import render_confirm_delete_saved_snippet from "../templates/confirm_dialog/confirm_delete_saved_snippet.hbs";
|
||||||
|
|
||||||
import * as channel from "./channel";
|
import * as channel from "./channel";
|
||||||
|
import * as compose_state from "./compose_state";
|
||||||
import * as compose_ui from "./compose_ui";
|
import * as compose_ui from "./compose_ui";
|
||||||
import * as confirm_dialog from "./confirm_dialog";
|
import * as confirm_dialog from "./confirm_dialog";
|
||||||
import * as dialog_widget from "./dialog_widget";
|
import * as dialog_widget from "./dialog_widget";
|
||||||
@@ -91,7 +92,9 @@ function item_click_callback(
|
|||||||
if (current_value === saved_snippets.ADD_SAVED_SNIPPET_OPTION_ID) {
|
if (current_value === saved_snippets.ADD_SAVED_SNIPPET_OPTION_ID) {
|
||||||
dialog_widget.launch({
|
dialog_widget.launch({
|
||||||
html_heading: $t_html({defaultMessage: "Add a new saved snippet"}),
|
html_heading: $t_html({defaultMessage: "Add a new saved snippet"}),
|
||||||
html_body: render_add_saved_snippet_modal(),
|
html_body: render_add_saved_snippet_modal({
|
||||||
|
prepopulated_content: compose_state.message_content(),
|
||||||
|
}),
|
||||||
html_submit_button: $t_html({defaultMessage: "Save"}),
|
html_submit_button: $t_html({defaultMessage: "Save"}),
|
||||||
id: "add-new-saved-snippet-modal",
|
id: "add-new-saved-snippet-modal",
|
||||||
form_id: "add-new-saved-snippet-form",
|
form_id: "add-new-saved-snippet-form",
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
<label for="title" class="modal-field-label">{{t "Title" }}</label>
|
<label for="title" class="modal-field-label">{{t "Title" }}</label>
|
||||||
<input id="new-saved-snippet-title" type="text" name="title" class="modal_text_input saved-snippet-title" value="" autocomplete="off" spellcheck="false" autofocus="autofocus"/>
|
<input id="new-saved-snippet-title" type="text" name="title" class="modal_text_input saved-snippet-title" value="" autocomplete="off" spellcheck="false" autofocus="autofocus"/>
|
||||||
<div>{{t "Content" }}</div>
|
<div>{{t "Content" }}</div>
|
||||||
<textarea class="settings_textarea saved-snippet-content" rows="4"></textarea>
|
<textarea class="settings_textarea saved-snippet-content" rows="4">
|
||||||
|
{{~prepopulated_content~}}
|
||||||
|
</textarea>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user