From 830f168b28ece5f9b126e53cfb5b7067b8775f65 Mon Sep 17 00:00:00 2001 From: Lebedev Konstantin Date: Tue, 12 Jul 2016 10:49:50 +0300 Subject: [PATCH] * fixed bool --- Sortable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sortable.js b/Sortable.js index f1a3f4b..25e9a59 100644 --- a/Sortable.js +++ b/Sortable.js @@ -173,7 +173,7 @@ _prepareGroup = function (options) { function toFn(value, pull) { - if (value === void 0) { + if (value === void 0 || value === true) { value = group.name; }