Browse Source

Merge branch 'dev' of github.com:RubaXa/Sortable into dev

pull/177/head
RubaXa 10 years ago
parent
commit
0163bcd166
  1. 2
      Sortable.js

2
Sortable.js

@ -905,7 +905,7 @@
*/
function _index(/**HTMLElement*/el) {
var index = 0;
while (el && (el = el.previousElementSibling)) {
while (el && (el = el.previousElementSibling) && (el.nodeName !== 'TEMPLATE')) {
index++;
}
return index;

Loading…
Cancel
Save