Merge pull request #1937 from KingYes/master
Fxing step return "NaN" in quantity.
This commit is contained in:
commit
ede8fca597
|
@ -32,7 +32,7 @@ jQuery(document).ready(function($) {
|
||||||
if ( ! currentVal || currentVal == "" || currentVal == "NaN" ) currentVal = 0;
|
if ( ! currentVal || currentVal == "" || currentVal == "NaN" ) currentVal = 0;
|
||||||
if ( max == "" || max == "NaN" ) max = '';
|
if ( max == "" || max == "NaN" ) max = '';
|
||||||
if ( min == "" || min == "NaN" ) min = 0;
|
if ( min == "" || min == "NaN" ) min = 0;
|
||||||
if ( step == 'any' || step == "" || parseFloat( step ) == "NaN" ) step = 1;
|
if ( step == 'any' || step == "" || step == undefined || parseFloat( step ) == "NaN" ) step = 1;
|
||||||
|
|
||||||
// Change the value
|
// Change the value
|
||||||
if ( $(this).is('.plus') ) {
|
if ( $(this).is('.plus') ) {
|
||||||
|
|
Loading…
Reference in New Issue