UNPKG

mmenu-js

Version:

The best javascript plugin for app look-alike on- and off-canvas menus with sliding submenus for your website and webapp.

37 lines (32 loc) 640 B
const options : mmOptionsDropdown = { drop: false, fitViewport: true, event: 'click', position: {}, tip: true }; export default options; /** * Extend shorthand options. * * @param {object} options The options to extend. * @return {object} The extended options. */ export function extendShorthandOptions( options : mmOptionsDropdown ) : mmOptionsDropdown { if ( typeof options == 'boolean' && options ) { options = { drop: options }; } if ( typeof options != 'object' ) { options = {}; } if ( typeof options.position == 'string' ) { options.position = { of: options.position }; } return options; };