Franz so, I have my dev environment ready, upstream pointing to your repo's, origin to my own. Pulled your changes etc.. Ran gulp magic. But I end up with the error:
Uncaught TypeError: this.$(...).sortable is not a function
from the following code:
this.$('ol, ul').sortable({ connectWith: 'primary' }).on('sortupdate', function (e, ui) {
// If we've moved a tag from 'primary' to 'secondary', then we'll update
// its attributes in our local store so that when we redraw the change
// will be made.
if (ui.startparent.is('ol') && ui.endparent.is('ul')) {
app.store.getById('tags', ui.item.data('id')).pushData({
attributes: {
position: null,
isChild: false
},
relationships: { parent: null }
});
}
obviously i miss some js requirement, but which one and where do i reload/rerun/regulp it?