Lines 227-232
Link Here
|
227 |
<button class="btn btn-default deny cancel-transfer" type="submit"><i class="fa fa-times"></i> Cancel transfer</button> |
227 |
<button class="btn btn-default deny cancel-transfer" type="submit"><i class="fa fa-times"></i> Cancel transfer</button> |
228 |
<input type="hidden" name="return_date_override" value="[% return_date_override | html %]" /> |
228 |
<input type="hidden" name="return_date_override" value="[% return_date_override | html %]" /> |
229 |
<input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember | html %]" /> |
229 |
<input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember | html %]" /> |
|
|
230 |
<button class="close" data-dismiss="modal">×</button> |
230 |
</div> |
231 |
</div> |
231 |
</form> |
232 |
</form> |
232 |
</div> |
233 |
</div> |
Lines 412-417
Link Here
|
412 |
<input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" /> |
413 |
<input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" /> |
413 |
<input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" /> |
414 |
<input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" /> |
414 |
[% END %] |
415 |
[% END %] |
|
|
416 |
<button class="close" data-dismiss="modal">×</button> |
415 |
</div> |
417 |
</div> |
416 |
</form> |
418 |
</form> |
417 |
</div> |
419 |
</div> |
Lines 836-842
Link Here
|
836 |
$("#barcode").focus(); |
838 |
$("#barcode").focus(); |
837 |
} |
839 |
} |
838 |
$(document).ready(function () { |
840 |
$(document).ready(function () { |
839 |
$(".modal").modal({ backdrop: 'static' }).on('shown.bs.modal', function() { |
841 |
$(".modal").modal({ backdrop: 'static', keyboard: true }).on('shown.bs.modal', function() { |
|
|
842 |
$('.close').trigger('focus') |
840 |
$("#barcode").prop("disabled", true); |
843 |
$("#barcode").prop("disabled", true); |
841 |
}).on('hidden.bs.modal', function() { |
844 |
}).on('hidden.bs.modal', function() { |
842 |
$("#barcode").prop("disabled", false).focus(); |
845 |
$("#barcode").prop("disabled", false).focus(); |
843 |
- |
|
|