Passage à la version 1.3.1

This commit is contained in:
Vincent Calame 2023-03-01 19:31:51 +01:00
parent 816ded088d
commit a63d448e70
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* version: r4013 */
/* version: 1.3.2 */
var Scrutari = {};
Scrutari.log = function (msg) {
if ((console) && (console.log)) {
@ -1439,7 +1439,7 @@ Scrutari.Utils.mark = function (markArray, classAttribute) {
for (var i = 0; i < length; i++) {
var obj = markArray[i];
if (typeof obj === 'string') {
html += obj;
html += Scrutari.escape(obj);
} else if (obj.s) {
html += "<span class='" + classAttribute + "'>";
html += Scrutari.escape(obj.s);