From: Vincent Vanwaelscappel Date: Tue, 11 Feb 2025 16:27:09 +0000 (+0100) Subject: wait #7325 @1 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=3d026aaad1fbc440556657d4a4b6be143e19b395;p=bloomsburie.git wait #7325 @1 --- diff --git a/js/casestudies_detail.js b/js/casestudies_detail.js new file mode 100644 index 0000000..f706180 --- /dev/null +++ b/js/casestudies_detail.js @@ -0,0 +1,9 @@ +TO_LOAD_ONCE[TO_LOAD_ONCE.length] = 'load_casestudies_detail();'; + +function load_casestudies_detail() { + $('p>a:first-child:last-child').each(function(){ + let t = $(this).text(); + $(this).addClass('animated-arrow').addClass('discreet'); + $(this).html('' + t + ''); + }); +}