mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
import $ from "jquery";
|
|
|
|
import * as common from "../common";
|
|
|
|
$(() => {
|
|
$("a.envelope-link").on("click", function () {
|
|
common.copy_data_attribute_value($(this), "admin-emails");
|
|
});
|
|
});
|