17 lines
480 B
JavaScript
17 lines
480 B
JavaScript
/**
|
|
* Initialise Superfish with custom arguments.
|
|
*
|
|
* @package Genesis\JS
|
|
* @author StudioPress
|
|
* @license GPL-2.0+
|
|
*/
|
|
|
|
jQuery(function ($) {
|
|
'use strict';
|
|
$( '.js-superfish' ).superfish({
|
|
'delay': 100, // 0.1 second delay on mouseout.
|
|
'animation': {'opacity': 'show', 'height': 'show'}, // Default os fade-in and slide-down animation.
|
|
'dropShadows': false // Disable drop shadows.
|
|
});
|
|
});
|