Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function ($, Drupal) {
  2.   'use strict';
  3.   Drupal.behaviors.xxx = {
  4.     attach: function(context, settings) {
  5.       console.log('attach');
  6.       $('.sidr', context).once ('xxx', function () {
  7.         console.log('once');
  8.       });
  9.     }
  10.   };
  11. }(jQuery, Drupal));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement