Home
last modified time | relevance | path

Searched refs:dmarray (Results 1 – 1 of 1) sorted by relevance

/plugin/edittable/script/
H A Deditor.js18 edittable.moveRow = function moveRow(movingRowIndexes, target, dmarray) { argument
23 var first = dmarray.slice(0, Math.min(startIndex, target));
24 var moving = dmarray.slice(startIndex, endIndex + 1);
27 between = dmarray.slice(target, startIndex);
29 between = dmarray.slice(endIndex + 1, target);
31 var last = dmarray.slice(Math.max(endIndex + 1, target));
65 edittable.moveCol = function moveCol(movingColIndexes, target, dmarray) { argument
66 return dmarray.map(function (row) {