Lines 247-253
Link Here
|
247 |
e.preventDefault(); |
247 |
e.preventDefault(); |
248 |
var patron_search_selections = JSON.parse( localStorage.getItem("patron_search_selections") ) || []; |
248 |
var patron_search_selections = JSON.parse( localStorage.getItem("patron_search_selections") ) || []; |
249 |
if( patron_search_selections.length > 0 ){ |
249 |
if( patron_search_selections.length > 0 ){ |
250 |
$("#borrowernumberlist").html( patron_search_selections.join('\n') ); |
250 |
$("#borrowernumberlist").val( patron_search_selections.join('\n') ); |
251 |
$("#patron_batchmod_form").submit(); |
251 |
$("#patron_batchmod_form").submit(); |
252 |
} |
252 |
} |
253 |
}); |
253 |
}); |
254 |
- |
|
|