Release of v5.0.2-beta3

Add more pure JS to the dynamic get area.
This commit is contained in:
2024-08-01 23:01:42 +02:00
parent 04ebefe98d
commit 6d24fcfd2b
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;
}
});
}