|
Lines 751-757
var barcodefield = $("#barcode");
Link Here
|
| 751 |
|
751 |
|
| 752 |
if (AlwaysLoadCheckoutsTable) { |
752 |
if (AlwaysLoadCheckoutsTable) { |
| 753 |
if (LoadCheckoutsTableDelay) { |
753 |
if (LoadCheckoutsTableDelay) { |
| 754 |
setTimeout(function () { |
754 |
loadIssuesTableDelayTimeoutId = setTimeout(function () { |
| 755 |
LoadIssuesTable(); |
755 |
LoadIssuesTable(); |
| 756 |
}, LoadCheckoutsTableDelay * 1000); |
756 |
}, LoadCheckoutsTableDelay * 1000); |
| 757 |
} else { |
757 |
} else { |
|
Lines 774-780
if (AlwaysLoadCheckoutsTable) {
Link Here
|
| 774 |
|
774 |
|
| 775 |
if (Cookies.get("issues-table-load-immediately-" + script) == "true") { |
775 |
if (Cookies.get("issues-table-load-immediately-" + script) == "true") { |
| 776 |
if (LoadCheckoutsTableDelay) { |
776 |
if (LoadCheckoutsTableDelay) { |
| 777 |
setTimeout(function () { |
777 |
loadIssuesTableDelayTimeoutId = setTimeout(function () { |
| 778 |
LoadIssuesTable(); |
778 |
LoadIssuesTable(); |
| 779 |
}, LoadCheckoutsTableDelay * 1000); |
779 |
}, LoadCheckoutsTableDelay * 1000); |
| 780 |
} else { |
780 |
} else { |
| 781 |
- |
|
|