Skip to content

Instantly share code, notes, and snippets.

@isramv
Created May 24, 2018 17:31
Show Gist options
  • Select an option

  • Save isramv/bbca2861b72cae4b6eef58e0b8f35b56 to your computer and use it in GitHub Desktop.

Select an option

Save isramv/bbca2861b72cae4b6eef58e0b8f35b56 to your computer and use it in GitHub Desktop.
resize disable toolbar drupal 8
// credits https://github.com/arshad
(function ($) {
Drupal.behaviors.dieToolbardie = {
attach: function (context) {
window.matchMedia('(min-width: 975px)').addListener( function(event) {
event.matches ? $('#toolbar-item-administration', context).click() : $('.toolbar-item.is-active', context).click();
});
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment