Browse Source

Merge pull request #243 from rkusa/rkusa-patch-1

fix index calculation to skip templates
pull/245/head
Lebedev Konstantin 10 years ago
parent
commit
dce3eb22d5
  1. 6
      Sortable.js

6
Sortable.js

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

Loading…
Cancel
Save