From a092094d1120a5c64998c720d0d20154db00f279 Mon Sep 17 00:00:00 2001 From: Kuitos Date: Thu, 25 Jun 2015 11:01:10 +0800 Subject: [PATCH] remove _bind function for Function.bind polyfill --- Sortable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sortable.js b/Sortable.js index 03d9f67..0b969d0 100644 --- a/Sortable.js +++ b/Sortable.js @@ -206,7 +206,7 @@ // Bind all private methods for (var fn in this) { if (fn.charAt(0) === '_') { - this[fn] = this[fn].bind(this); + this[fn] = this[fn].bind(this); } }