Created
May 24, 2018 17:31
-
-
Save isramv/bbca2861b72cae4b6eef58e0b8f35b56 to your computer and use it in GitHub Desktop.
resize disable toolbar drupal 8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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