Release of v3.2.3-beta4
Add native plugin builder for Joomla 4 & 5.
This commit is contained in:
@ -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;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user