mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
It's not really a part of the server (aka the rest of zephyr/). (imported from commit 27f6b6b064938ad927075a68d873e4b68710d279)
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();
|
|
});
|
|
});
|