Removed forceFallback option in SortableJS which causes issue with radio buttons

This commit is contained in:
Djamil Legato
2016-03-08 15:20:28 -08:00
parent 392b32e724
commit 2ae4c72efd
2 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ export default class CollectionsField {
if (container.data('collection-sort')) { return; }
container.data('collection-sort', new Sortable(container.get(0), {
forceFallback: true,
forceFallback: false,
animation: 150,
filter: '.CodeMirror, .grav-editor-resizer',
onUpdate: () => this.reindex(container)

File diff suppressed because one or more lines are too long