Make script work in Drupal

TODO check that it still works in the static layout...
This commit is contained in:
benjamin melançon 2018-08-24 11:29:40 -04:00
parent 7c335eb705
commit 0d2c41a615

View file

@ -1,5 +1,5 @@
$( document ).ready(function() { (function ($) {
$(document).ready(function(){
// Open side navbar for handsets // Open side navbar for handsets
$('.navbar-burger').on('click tap', function(e) { $('.navbar-burger').on('click tap', function(e) {
$(this).toggleClass('is-active'); $(this).toggleClass('is-active');
@ -41,5 +41,5 @@ $( document ).ready(function() {
} }
] ]
}); });
}); });
})(jQuery);