visualn-8.x-1.x-dev/modules/visualn_embed/js/preview-drawing-dialog.js
modules/visualn_embed/js/preview-drawing-dialog.js
(function ($, Drupal) {
Drupal.behaviors.visualnEmbedDialogBehaviour = {
attach: function (context, settings) {
$('.js-toggle-actions', context).once('drawing-thumbnail').each(function () {
$(this).click(function(e){
e.preventDefault();
});
});
$('.js-show-info', context).once('drawing-type-thumbnail').each(function () {
$(this).click(function(e){
e.preventDefault();
e.stopPropagation();
});
});
}
};
})(jQuery, Drupal);
