Add sortability to custom profile fields form

This commit is contained in:
Hypolite Petovan 2020-01-18 10:43:28 -05:00
parent 9bc78efe68
commit cc007f715d
8 changed files with 61 additions and 4 deletions

View file

@ -0,0 +1,13 @@
$(function () {
$("#profile-custom-fields").sortable({
containerSelector: 'div#profile-custom-fields',
handle: 'legend',
itemSelector: 'fieldset',
placeholder: '<div class="placeholder"></div>',
onDrag: function($item, position, _super, event) {
delete position['left'];
$item.css(position);
event.preventDefault();
}
});
});