mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-04-04 09:33:24 -04:00
This fixes a minor bug that occurs if there is only 1 deposit for previous year.
If no min is found this makes it the same as max, only a problem for non transaction_log pages using transaction.js if there is only one deposit for the last year, not sure what will happen with 0 deposits for the last year.
This commit is contained in:
parent
db93ad1103
commit
824435a35f
@ -404,6 +404,12 @@ $(function() {
|
||||
// watch that percentage doesn't acquire too many decimal points.
|
||||
//console.dir(range_obj);
|
||||
|
||||
// If no min is found this makes it the same as max
|
||||
// only a problem for non transaction_log pages using transaction.js if there is only one deposit for the last year
|
||||
// not sure what will happen with 0 deposits for the last year
|
||||
if ( !range_obj["min"] ) {
|
||||
range_obj["min"] = range_obj["max"];
|
||||
}
|
||||
|
||||
//initialize slider
|
||||
if (!slider) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user