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
// on page load, search for & display a random gif matching your search term using the Giphy API and add them to the pihole blockpage | |
// thanks to the nealrs (github) | |
// immae1 2017 | |
var x = "Pi-hole: A black hole for Internet advertisements." | |
document.addEventListener('DOMContentLoaded', function () { | |
items = ["funny cats","dejay","nerd","beer"]; // tag array | |
var item = items[Math.floor(Math.random()*items.length)]; | |