Release of v4.0.2-beta3

Add more pure JS to the dynamic get area.
This commit is contained in:
2024-08-01 23:00:32 +02:00
parent ab59720c50
commit ae1c89a15d
43 changed files with 238 additions and 210 deletions

View File

@ -700,10 +700,12 @@ function removeCodeFromEditor(code_string, editor_id){
}
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;
}
});
}