updated diet

This commit is contained in:
vieron
2013-06-13 12:14:21 +02:00
parent b4ac8dc0bd
commit 23482b58cd
4 changed files with 22 additions and 14 deletions
+7 -3
View File
@@ -576,7 +576,7 @@
return false;
});
return false;
if (!isTouch) { return false; }
};
@@ -2089,7 +2089,9 @@
return true; //break
}
upper_rows[tcol].sort();
upper_rows[tcol].sort(function(a, b) {
return a - b;
});
});
if (!result) { return false; }
@@ -2144,7 +2146,9 @@
return true; //break
}
upper_rows[tcol].sort();
upper_rows[tcol].sort(function(a, b) {
return a - b;
});
});
if (!result) { return false; }
+2 -2
View File
File diff suppressed because one or more lines are too long
+7 -3
View File
@@ -576,7 +576,7 @@
return false;
});
return false;
if (!isTouch) { return false; }
};
@@ -2089,7 +2089,9 @@
return true; //break
}
upper_rows[tcol].sort();
upper_rows[tcol].sort(function(a, b) {
return a - b;
});
});
if (!result) { return false; }
@@ -2144,7 +2146,9 @@
return true; //break
}
upper_rows[tcol].sort();
upper_rows[tcol].sort(function(a, b) {
return a - b;
});
});
if (!result) { return false; }
File diff suppressed because one or more lines are too long