Browse Source

remove _bind function for Function.bind polyfill

pull/450/head
Kuitos 10 years ago
parent
commit
a092094d11
  1. 2
      Sortable.js

2
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);
}
}

Loading…
Cancel
Save