Skip to content
Snippets Groups Projects
Select Git revision
  • e0f5a239f12f1b883e97749c5c62b43380742911
  • main default protected
  • add-tat-sample
  • 15-choses-a-faire-css
  • macao3-export
  • gitlab-ci-debug
  • 2-gitlab-deploy
  • 3-qcu-features
  • 1-navigation
  • test
10 results

custom.js

Blame
  • Forked from MACAO / MACAO Hugo
    90 commits behind the upstream repository.
    Anthony Geourjon's avatar
    Anthony authored
    e0f5a239
    History
    custom.js 348 B
    console.log('Custom JS loaded');
    $(document).ready(function() {
        console.log('Custom JS executed');
        // Add specific classes to play buttons
        $('button:contains("Play")').html('<i class="fa-solid fa-play"></i> Écouter').addClass('btn-play').prop('title','Écouter');
    
        // Add Title on top of the page
        $('.book-header').show();
    });