mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 08:56:10 +00:00
playground_links_popover: Remove wrong $ prefix for non-jQuery variable.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Anders Kaseorg
parent
43e53d9b9d
commit
be13557ead
@@ -103,9 +103,9 @@ function register_click_handlers() {
|
|||||||
url_template.expand({code: extracted_code}),
|
url_template.expand({code: extracted_code}),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
for (const $playground of playground_info) {
|
for (const playground of playground_info) {
|
||||||
const url_template = url_template_lib.parse($playground.url_template);
|
const url_template = url_template_lib.parse(playground.url_template);
|
||||||
$playground.playground_url = url_template.expand({code: extracted_code});
|
playground.playground_url = url_template.expand({code: extracted_code});
|
||||||
}
|
}
|
||||||
const popover_target = $view_in_playground_button.find(
|
const popover_target = $view_in_playground_button.find(
|
||||||
".playground-links-popover-container",
|
".playground-links-popover-container",
|
||||||
|
|||||||
Reference in New Issue
Block a user