mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
We now generate our API documentation page based off of JSON source. (imported from commit 0e8a91ef4278684dbcad89cad39a1977672245fc)
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();
|
|
});
|
|
});
|