Browse Source

Adds an additional check for Stand Time or nothing else works.

devel
Jonathan Rosenbaum 7 years ago
parent
commit
c214c48a3d
  1. 4
      js/transaction.js

4
js/transaction.js

@ -920,9 +920,9 @@ $(function() {
}
}
if ($("#stand_time_total").is(":empty")) {
if ($("#trans_type_info").text() === "Stand Time" && $("#stand_time_total").is(":empty")) {
$("#redeemable_hours").spinner("disable");
} else {
} else if ($("#trans_type_info").text() === "Stand Time") {
$("#redeemable_hours").spinner("enable");
}

Loading…
Cancel
Save