This file contains hidden or 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
<?php | |
class Foundation_Walker_Nav_Menu extends Walker_Nav_Menu { | |
function start_lvl( &$output, $depth ) { | |
$indent = str_repeat( "\t", $depth ); | |
$output .= "\n$indent<ul class=\"flyout\">\n"; | |
} |
This file contains hidden or 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
/* | |
* This Script adds every song in the playlist you're currently | |
* viewing at https://play.spotify.com to "Your Music". | |
* | |
* Open your browser console and paste this script to run it. | |
*/ | |
(function() { | |
// Check this web browser has all the functionality we need to do this task. | |
var hasQuerySelector = typeof document.querySelector === 'function'; |