mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
With webpack, variables declared in each file are already file-local (Global variables need to be explicitly exported), so these IIFEs are no longer needed. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
17 lines
457 B
JavaScript
17 lines
457 B
JavaScript
exports.set_up = function () {
|
|
$('body').on('click', '.settings-unmute-topic', function (e) {
|
|
var $row = $(this).closest("tr");
|
|
var stream_id = $row.attr("data-stream-id");
|
|
var topic = $row.attr("data-topic");
|
|
|
|
e.stopImmediatePropagation();
|
|
|
|
muting_ui.unmute(stream_id, topic);
|
|
$row.remove();
|
|
});
|
|
|
|
muting_ui.set_up_muted_topics_ui(muting.get_muted_topics());
|
|
};
|
|
|
|
window.settings_muting = exports;
|