mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
7 lines
194 B
JavaScript
7 lines
194 B
JavaScript
$(function () {
|
|
$('a[data-toggle="tab"]').on('shown', function (e) {
|
|
$("." + $(e.target).data("class")).show();
|
|
$("." + $(e.relatedTarget).data("class")).hide();
|
|
});
|
|
});
|