Version to 3.5.1
Compatible with GLPI 9.3
This commit is contained in:
@@ -2,18 +2,17 @@
|
||||
$(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)
|
||||
{
|
||||
if (!textToChange.trim().length>0) {
|
||||
var title = $(this).parent().prev().text();
|
||||
textToChange = title;
|
||||
}
|
||||
}
|
||||
$(this).text(textToChange);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user