]> AND Public Git Repository - simgrid.git/blob - docs/source/_ext/showfile.js
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Try to fix python tests failing with python 3.9 on fedora-rawhide.
[simgrid.git] / docs / source / _ext / showfile.js
1
2 $(function() {
3     /**
4      * Toggle logic
5      */
6     $(".hidden-content").hide();
7     $(".toggle-header").click(function () {
8         $(this).toggleClass("open");
9         $(this).next(".toggle-content").toggle('400');
10     });
11 });
12