Browse Source

Adding missing comma on fallbackClass

Adding a comma on the following line will make the options valid javascript.

`fallbackClass: "sortable-fallback"` to `fallbackClass: "sortable-fallback",`
pull/854/head
Harry Mumford-Turner 9 years ago
parent
commit
abec27faa1
  1. 2
      README.md

2
README.md

@ -67,7 +67,7 @@ var sortable = new Sortable(el, {
dataIdAttr: 'data-id',
forceFallback: false, // ignore the HTML5 DnD behaviour and force the fallback to kick in
fallbackClass: "sortable-fallback" // Class name for the cloned DOM Element when using forceFallback
fallbackClass: "sortable-fallback", // Class name for the cloned DOM Element when using forceFallback
fallbackOnBody: false, // Appends the cloned DOM Element into the Document's Body
scroll: true, // or HTMLElement

Loading…
Cancel
Save