From da1e75f8b1d42eb0948d3b5c48483a7db44f637c Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 17 Nov 2016 09:12:43 +0800 Subject: [PATCH] [Fix] missing semicolon in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c42329f..30914f3 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ var sortable = new Sortable(el, { 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 - fallbackTolerance: 0 // Specify in pixels how far the mouse should move before it's considered as a drag. + fallbackTolerance: 0, // Specify in pixels how far the mouse should move before it's considered as a drag. scroll: true, // or HTMLElement scrollFn: function(offsetX, offsetY, originalEvent) { ... }, // if you have custom scrollbar scrollFn may be used for autoscrolling