The data for the language display is now fetched on demand

This commit is contained in:
Michael 2024-04-05 09:57:43 +00:00
parent 50b1de5959
commit b40687081e
7 changed files with 80 additions and 8 deletions

View file

@ -803,6 +803,12 @@ function displaySearchText(id) {
});
}
function displayLanguage(id) {
$.get('item/' + id + '/language', function(data) {
alert(data);
});
}
var lockvisible = false;
function lockview(event, type, id) {