/*! * Appeal Scripts * Version 1.0.0 */ jQuery(function($) { // Bootstrap menu magic $(window).resize(function() { if ($(window).width() < 768) { $(".dropdown-toggle").attr('data-toggle', 'dropdown'); } else { $(".dropdown-toggle").removeAttr('data-toggle dropdown'); } }); });