mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 16:37:23 +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}),
|
||||
);
|
||||
} else {
|
||||
for (const $playground of playground_info) {
|
||||
const url_template = url_template_lib.parse($playground.url_template);
|
||||
$playground.playground_url = url_template.expand({code: extracted_code});
|
||||
for (const playground of playground_info) {
|
||||
const url_template = url_template_lib.parse(playground.url_template);
|
||||
playground.playground_url = url_template.expand({code: extracted_code});
|
||||
}
|
||||
const popover_target = $view_in_playground_button.find(
|
||||
".playground-links-popover-container",
|
||||
|
||||
Reference in New Issue
Block a user