diff options
Diffstat (limited to 'assets/js/ps-app.js')
-rw-r--r-- | assets/js/ps-app.js | 42 |
1 files changed, 22 insertions, 20 deletions
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 ./<id>/ - [ '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 ./<id>/ + [ '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') |