D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
raptqcnr
/
www
/
wp-content
/
themes
/
woodmart
/
js
/
scripts
/
menu
/
Filename :
moreCategoriesButton.js
back
Copy
/* global woodmart_settings */ (function($) { woodmartThemeModule.moreCategoriesButton = function() { $('.wd-more-cat').each(function() { var $wrapper = $(this); $wrapper.find('.wd-more-cat-btn a').on('click', function(e) { e.preventDefault(); $wrapper.toggleClass('wd-show-cat'); woodmartThemeModule.$document.trigger('wood-images-loaded'); }); }); }; $(document).ready(function() { woodmartThemeModule.moreCategoriesButton(); }); })(jQuery);