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