Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
515 B

!function (document, Drupal, $) {
'use strict';
Drupal.behaviors.drupalVueModal = {
attach: function attach(context) {
$('#non-vue-modal-button', context).on('click', function (e) {
e.preventDefault();
$('#non-vue-modal .modal__mask').removeClass('hidden');
});
$('#non-vue-modal .modal__close', context).on('click', function (e) {
e.preventDefault();
$('#non-vue-modal .modal__mask').addClass('hidden');
});
}
};
}(document, Drupal, jQuery);