Guest User

Untitled

a guest
Jun 13th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. (function ($, Drupal) {
  2. Drupal.behaviors.myModuleBehavior = {
  3. attach: function (context, settings) {
  4. $('.layout-container', context).once('myModuleBehavior').each(function () {
  5. $('.site-name a').on('click', function (event) {
  6. event.preventDefault();
  7. event.stopPropagation();
  8. console.log("clicking on logo");
  9. window.location.hash = "/test=0";
  10. });
  11. });
  12. }
  13. };
  14. })(jQuery, Drupal);
Add Comment
Please, Sign In to add comment