1
0
Fork 0
forked from 0x2620/oxjs

only re-sort if more than one item

This commit is contained in:
Rolux 2010-07-03 10:35:28 +02:00
commit 16365555e9
2 changed files with 5 additions and 2 deletions

View file

@ -2876,8 +2876,10 @@ requires
}
function updateSort() {
clear();
getPositions();
if (self.listLength > 1) {
clear();
getPositions();
}
}
self.onChange = function(key, value) {