Files
zulip/static/js/analytics/support.js
Anders Kaseorg 6ec808b8df js: Add "use strict" directive to CommonJS files.
ES and TypeScript modules are strict by default and don’t need this
directive.  ESLint will remind us to add it to new CommonJS files and
remove it from ES and TypeScript modules.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-07-31 22:09:46 -07:00

21 lines
573 B
JavaScript

"use strict";
$(() => {
$("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").on("click", function () {
common.copy_data_attribute_value($(this), "copytext");
});
});