PATH:
var
/
www
/
vhosts
/
lahuertaatomica.es
/
httpdocs
/
assets
/
plugins
/
jPanelMenu
/
docs
/
js
/
Editing: example-jRespond.js
var jPanelMenu = {}; $(function() { $('pre').each(function(i, e) {hljs.highlightBlock(e)}); jPanelMenu = $.jPanelMenu({ menu: 'header.main nav' }); var jR = jRespond([ { label: 'small', enter: 0, exit: 800 },{ label: 'large', enter: 800, exit: 10000 } ]); jR.addFunc({ breakpoint: 'small', enter: function() { jPanelMenu.on(); $(document).on('click',jPanelMenu.menu + ' li a',function(e){ if ( jPanelMenu.isOpen() && $(e.target).attr('href').substring(0,1) == '#' ) { jPanelMenu.close(); } }); }, exit: function() { jPanelMenu.off(); $(document).off('click',jPanelMenu.menu + ' li a'); } }); });
SAVE
CANCEL