Added two new events per tasks (new and update) Added possibility to send spontaneous emails Fixed various CS typos Set version to 3.6.3 fixes #77
21 lines
617 B
JavaScript
21 lines
617 B
JavaScript
$(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);
|
|
}
|
|
});
|
|
});
|
|
});
|