Changed EOL to CRLF

This commit is contained in:
Moron, Olivier
2023-10-16 14:15:32 +02:00
parent e5ccb43e95
commit 78ead76101
36 changed files with 2016 additions and 2016 deletions

View File

@@ -1,20 +1,20 @@
$(function () {
$(document).ajaxComplete(function (event, jqXHR, ajaxOptions) {
//debugger;
var pattern = /##processmaker.*(##|...)/g;
$('tr.tab_bg_2 td a').each(function (index) {
var textToChange = $(this).text();
var matches = textToChange.match(pattern);
if (matches) {
textToChange = textToChange.replace(pattern, '');
if (!textToChange.trim().length>0) {
var title = $(this).parent().prev().text();
textToChange = title;
}
$(this).text(textToChange);
}
});
});
});
$(function () {
$(document).ajaxComplete(function (event, jqXHR, ajaxOptions) {
//debugger;
var pattern = /##processmaker.*(##|...)/g;
$('tr.tab_bg_2 td a').each(function (index) {
var textToChange = $(this).text();
var matches = textToChange.match(pattern);
if (matches) {
textToChange = textToChange.replace(pattern, '');
if (!textToChange.trim().length>0) {
var title = $(this).parent().prev().text();
textToChange = title;
}
$(this).text(textToChange);
}
});
});
});