diff --git a/Sortable.js b/Sortable.js index d271999e8..164de9677 100644 --- a/Sortable.js +++ b/Sortable.js @@ -228,7 +228,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); } }