From b8bfc43a9f6c5e5fbfdf28045e406e94eff74875 Mon Sep 17 00:00:00 2001 From: hellekin Date: Sat, 6 Jan 2018 11:54:12 +0100 Subject: Add lang switch support to all ps.lesoiseaux.io --- assets/js/ps-app.js | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) (limited to 'assets/js') diff --git a/assets/js/ps-app.js b/assets/js/ps-app.js index 7bb4b9c..c599cf2 100644 --- a/assets/js/ps-app.js +++ b/assets/js/ps-app.js @@ -2,26 +2,28 @@ $(document).ready(function() { - // Make each .media section clickable to reach .// - [ 'gfx', 'txt', 'vdo' ].forEach(function(id) { - $('#' + id) - .click(function(e) { - window.location = `/${id}/`; - return false - }) - .mouseover(function(e) { - e.target.style.cursor = 'pointer' - return false - }) - .mouseout(function(e) { - e.target.style.cursor = 'not-allowed' - return false - }) - }) - $('.media').mouseout(function(e) { - e.target.style.cursor = 'auto' - return false - }) + if ($('body.ps.home')) { + // Make each .media section clickable to reach .// + [ 'gfx', 'txt', 'vdo' ].forEach(function(id) { + $('#' + id) + .click(function(e) { + window.location = `/${id}/`; + return false + }) + .mouseover(function(e) { + e.target.style.cursor = 'pointer' + return false + }) + .mouseout(function(e) { + e.target.style.cursor = 'not-allowed' + return false + }) + }) + $('.media').mouseout(function(e) { + e.target.style.cursor = 'auto' + return false + }) + } // EN/FR switch $('footer') -- cgit v1.2.3