Adds the option to overide the assignment in item dynamic custom gets.

This commit is contained in:
2022-01-21 16:41:54 +02:00
parent e5d599d5a5
commit 6a38523843
8 changed files with 42 additions and 27 deletions

View File

@ -310,7 +310,7 @@ class ComponentbuilderViewCompiler extends JViewLegacy
jQuery.get(noticeboard)
.success(function(board) {
if (board.length > 5) {
jQuery(\".noticeboard-md\").html(marked(board));
jQuery(\".noticeboard-md\").html(marked.parse(board));
getIS(1,board).done(function(result) {
if (result){
jQuery(\".vdm-new-notice\").show();
@ -327,7 +327,7 @@ class ComponentbuilderViewCompiler extends JViewLegacy
jQuery.get(proboard)
.success(function(board) {
if (board.length > 5) {
jQuery(\".proboard-md\").html(marked(board));
jQuery(\".proboard-md\").html(marked.parse(board));
} else {
jQuery(\".proboard-md\").html(all_is_good);
}