Lines 1-4
Link Here
|
1 |
$(document).ready(function() { |
1 |
$(document).ready(function() { |
|
|
2 |
|
3 |
$('#addConcernModal').on('show.bs.modal', function (e) { |
4 |
if ( logged_in_user_id === "" ) { |
5 |
console.log("found logged_in_user_id"); |
6 |
$('#loginModal').modal('show'); |
7 |
return false; |
8 |
} |
9 |
}); |
10 |
|
2 |
$('#addConcernModal').on('click', '#addConfirm', function(e) { |
11 |
$('#addConcernModal').on('click', '#addConfirm', function(e) { |
3 |
let reporter_id = $('#reporter_add').val(); |
12 |
let reporter_id = $('#reporter_add').val(); |
4 |
let biblio_id = $('#biblio_add').val(); |
13 |
let biblio_id = $('#biblio_add').val(); |
5 |
- |
|
|