|
Lines 271-282
$(document).ready(function() {
Link Here
|
| 271 |
} |
271 |
} |
| 272 |
barcodefield.focus(); |
272 |
barcodefield.focus(); |
| 273 |
}); |
273 |
}); |
|
|
274 |
|
| 275 |
setTimeout( function () { |
| 276 |
|
| 274 |
$('#issues-table-load-now-button').click(function(){ |
277 |
$('#issues-table-load-now-button').click(function(){ |
| 275 |
if ( loadIssuesTableDelayTimeoutId ) clearTimeout(loadIssuesTableDelayTimeoutId); |
278 |
if ( loadIssuesTableDelayTimeoutId ) clearTimeout(loadIssuesTableDelayTimeoutId); |
| 276 |
LoadIssuesTable(); |
279 |
LoadIssuesTable(); |
| 277 |
barcodefield.focus(); |
280 |
barcodefield.focus(); |
| 278 |
return false; |
281 |
return false; |
| 279 |
}); |
282 |
}); |
|
|
283 |
console.log("show checkouts handler attached") |
| 284 |
|
| 285 |
} |
| 286 |
,2000); |
| 280 |
|
287 |
|
| 281 |
if ( Cookies.get("issues-table-load-immediately-" + script) == "true" ) { |
288 |
if ( Cookies.get("issues-table-load-immediately-" + script) == "true" ) { |
| 282 |
if ( LoadCheckoutsTableDelay ) { |
289 |
if ( LoadCheckoutsTableDelay ) { |
| 283 |
- |
|
|