|
@@ -898,7 +898,7 @@ function variableValueMenuCode (
|
|
|
'<div class="variable_rendered"> <span class="var_name">';
|
|
|
|
|
|
if (isNaN(variable_obj.content)) {
|
|
|
- variable_render += variable_obj.content.replaceAll(" ", " ");
|
|
|
+ variable_render += variable_obj.content.split(" ").join(" ");
|
|
|
} else {
|
|
|
variable_render += variable_obj.content;
|
|
|
}
|
|
@@ -1785,7 +1785,7 @@ function openInputToValue (
|
|
|
.val();
|
|
|
|
|
|
if (isNaN(ref_object.content)) {
|
|
|
- rendered.html(ref_object.content.replaceAll(" ", " "));
|
|
|
+ rendered.html(ref_object.content.split(" ").join(" "));
|
|
|
} else {
|
|
|
rendered.text(ref_object.content);
|
|
|
}
|
|
@@ -1808,7 +1808,7 @@ function openInputToValue (
|
|
|
.val();
|
|
|
|
|
|
if (isNaN(ref_object.content)) {
|
|
|
- rendered.html(ref_object.content.replaceAll(" ", " "));
|
|
|
+ rendered.html(ref_object.content.split(" ").join(" "));
|
|
|
} else {
|
|
|
rendered.text(ref_object.content);
|
|
|
}
|
|
@@ -1817,7 +1817,7 @@ function openInputToValue (
|
|
|
}
|
|
|
if (code == 27) {
|
|
|
if (isNaN(ref_object.content)) {
|
|
|
- rendered.html(ref_object.content.replaceAll(" ", " "));
|
|
|
+ rendered.html(ref_object.content.split(" ").join(" "));
|
|
|
} else {
|
|
|
rendered.text(ref_object.content);
|
|
|
}
|