This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//hide current page from grid | |
let grid_class = 'fix-grid';//name of the grid class | |
if(document.querySelectorAll('.' + grid_class).length){ | |
let cur_url = window.location.pathname, | |
grid_list = document.querySelectorAll('.' + grid_class +' > div > div'); | |
Array.prototype.forEach.call(grid_list, function(el){ | |
if(el.querySelectorAll('a')[0].getAttribute('href') == cur_url){ | |
el.classList.add('uk-hidden'); | |
} |