1
0
Fork 0
forked from 0x2620/oxjs

in Ox.Request, allow for 409 Conflict

This commit is contained in:
rlx 2011-10-31 16:02:00 +00:00
commit 63b61f520b
2 changed files with 10 additions and 5 deletions

View file

@ -1377,7 +1377,7 @@ Ox.List = function(options, self) {
bValue = sort[b.id],
ret = 0
if (aValue < bValue) {
ret = operator == '+' ? -1 : 1
ret = operator == '+' ? -1 : 1;
} else if (aValue > bValue) {
ret = operator == '+' ? 1 : -1;
}