Release of v3.2.3-beta4

Add native plugin builder for Joomla 4 & 5.
This commit is contained in:
2024-08-15 01:37:23 +02:00
parent 3aaa91daf7
commit b3ced491d7
117 changed files with 10986 additions and 2199 deletions

View File

@ -230,10 +230,12 @@ function getCodeFrom_server(id, type, type_name, callingName) {
});
}
function getLinked(){
function getLinked() {
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
if(result){
jQuery('#display_linked_to').html(result);
if (result.error) {
console.error(result.error);
} else if (result) {
document.getElementById('display_linked_to').innerHTML = result;
}
});
}