diff --git a/Sortable.js b/Sortable.js index 6a025ea..61c8e70 100644 --- a/Sortable.js +++ b/Sortable.js @@ -255,7 +255,7 @@ // Bind all private methods for (var fn in this) { - if (fn.charAt(0) === '_') { + if (fn.charAt(0) === '_' && typeof(this[fn].bind) === 'function') { this[fn] = this[fn].bind(this); } }