|
Lines 111-116
Link Here
|
| 111 |
|
111 |
|
| 112 |
var logged_in_user_borrowernumber = "[% logged_in_user.borrowernumber | html %]"; |
112 |
var logged_in_user_borrowernumber = "[% logged_in_user.borrowernumber | html %]"; |
| 113 |
|
113 |
|
|
|
114 |
var table_settings = [% TablesSettings.GetTableSettings( 'cataloguing', 'concerns', 'table_concerns', 'json' ) | $raw %]; |
| 115 |
|
| 114 |
var concerns_url = '/api/v1/catalog/concerns'; |
116 |
var concerns_url = '/api/v1/catalog/concerns'; |
| 115 |
var concerns = $("#table_concerns").kohaTable({ |
117 |
var concerns = $("#table_concerns").kohaTable({ |
| 116 |
"ajax": { |
118 |
"ajax": { |
|
Lines 194-200
Link Here
|
| 194 |
"orderable": false |
196 |
"orderable": false |
| 195 |
}, |
197 |
}, |
| 196 |
] |
198 |
] |
| 197 |
}); |
199 |
}, table_settings, 1); |
| 198 |
|
200 |
|
| 199 |
$('#hideResolved').on( "click", function() { |
201 |
$('#hideResolved').on( "click", function() { |
| 200 |
// It would be great if we could pass null here but it gets stringified |
202 |
// It would be great if we could pass null here but it gets stringified |
| 201 |
- |
|
|