Files
zulip/static/js/analytics/support.js
Anders Kaseorg f3726db89a js: Normalize strings to double quotes.
Prettier would do this anyway, but it’s separated out for a more
reviewable diff.  Generated by ESLint.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-07-17 14:31:24 -07:00

16 lines
516 B
JavaScript

$(() => {
$("body").on("click", ".scrub-realm-button", function (e) {
e.preventDefault();
const string_id = $(this).data("string-id");
const message = 'Do you really want to scrub the realm "' + string_id + '"? This action is irreversible.';
// eslint-disable-next-line no-alert
if (confirm(message)) {
this.form.submit();
}
});
$("a.copy-button").click(function () {
common.copy_data_attribute_value($(this), "copytext");
});
});