mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 18:36:36 +00:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
import * as common from "../common";
|
|
|
|
$(() => {
|
|
$("a.envelope-link").on("click", function () {
|
|
common.copy_data_attribute_value($(this), "admin-emails");
|
|
});
|
|
});
|