mirror of
https://github.com/zulip/zulip.git
synced 2025-11-17 20:41:46 +00:00
dialog_widget: Add support for having a custom id on the container element.
This commit is contained in:
@@ -78,6 +78,7 @@ export function launch(conf) {
|
||||
// * close_on_submit: Whether to close modal on clicking submit.
|
||||
// * focus_submit_on_open: Whether to focus submit button on open.
|
||||
// * help_link: A help link in the heading area.
|
||||
// * id: Custom id to the container element to modify styles.
|
||||
|
||||
for (const f of mandatory_fields) {
|
||||
if (conf[f] === undefined) {
|
||||
@@ -97,6 +98,7 @@ export function launch(conf) {
|
||||
link: conf.help_link,
|
||||
html_submit_button,
|
||||
html_body: conf.html_body,
|
||||
id: conf.id,
|
||||
});
|
||||
const dialog = $(html);
|
||||
$("body").append(dialog);
|
||||
|
||||
Reference in New Issue
Block a user