0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-22 17:30:29 +01:00

Fix wizard-link sorting

Dieser Commit ist enthalten in:
Angus McLeod 2020-04-16 12:13:26 +10:00
Ursprung d26744cf56
Commit 4576aff5b5

Datei anzeigen

@ -13,13 +13,13 @@ export default Component.extend({
anyLinks: notEmpty('links'), anyLinks: notEmpty('links'),
@on('didInsertElement') @on('didInsertElement')
@observes('links.@each') @observes('links.[]')
didInsertElement() { setupSortable() {
scheduleOnce('afterRender', () => (this.applySortable())); scheduleOnce('afterRender', () => (this.applySortable()));
}, },
applySortable() { applySortable() {
$(this.element).find("ul") $(this.element).find(".link-list")
.sortable({ tolerance: 'pointer' }) .sortable({ tolerance: 'pointer' })
.on('sortupdate', (e, ui) => { .on('sortupdate', (e, ui) => {
this.updateItemOrder(ui.item.data('id'), ui.item.index()); this.updateItemOrder(ui.item.data('id'), ui.item.index());