Skip to content

Instantly share code, notes, and snippets.

@ljmclaney
Created August 9, 2022 15:08
Show Gist options
  • Save ljmclaney/cc94d1648c33819ab3866840f57a4117 to your computer and use it in GitHub Desktop.
Save ljmclaney/cc94d1648c33819ab3866840f57a4117 to your computer and use it in GitHub Desktop.
Sortable exmaple
let $this = this;
const fieldsEl = document.getElementById('fields');
Sortable.create(fieldsEl, {
onChange: function (evt) {
let list = this.toArray();
list.forEach(function (uuid, index) {
$this.fields[field].sort_order = index
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment