Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace non-breaking spaces.
[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