Skip to content

Instantly share code, notes, and snippets.

@isramv
Created March 12, 2019 22:26
Show Gist options
  • Save isramv/4f4212b47ee3224a324d42d6cb6e7fa8 to your computer and use it in GitHub Desktop.
Save isramv/4f4212b47ee3224a324d42d6cb6e7fa8 to your computer and use it in GitHub Desktop.
originally from @arshad
/* eslint-disable */
(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