layout_paragraphs-1.0.x-dev/modules/layout_paragraphs_permissions/js/disable-reorder.js
modules/layout_paragraphs_permissions/js/disable-reorder.js
(($, Drupal) => {
Drupal.behaviors.layoutParagraphsPermissionsDisableReorder = {
attach() {
Drupal.registerLpbMoveError((settings, el, target) => {
if ($(target).closest('js-lpb-reordering-disabled')) {
return 'Reordering is disabled for the current user.';
}
});
},
};
})(jQuery, Drupal);
