mirror of
https://github.com/sagidayan/greasemonkey-scripts.git
synced 2024-11-22 09:25:26 +00:00
[BZ Fresh UI] Added formatting for ticket changes
This commit is contained in:
parent
a518799fff
commit
f99af36f48
1 changed files with 21 additions and 2 deletions
|
@ -103,7 +103,26 @@
|
||||||
img.src = userAvatar;
|
img.src = userAvatar;
|
||||||
wrapper.appendChild(img);
|
wrapper.appendChild(img);
|
||||||
header.insertBefore(wrapper, header.firstChild);
|
header.insertBefore(wrapper, header.firstChild);
|
||||||
})
|
});
|
||||||
|
const historyChanges = [...document.getElementsByClassName('ih_history_change')];
|
||||||
|
log(`Found ${historyChanges.length} changes sections to format.`);
|
||||||
|
historyChanges.forEach(h => {
|
||||||
|
const lines = h.innerText.split('\n');
|
||||||
|
const newLines = [];
|
||||||
|
lines.forEach(l => {
|
||||||
|
const tab = newLines.length ? ' ' : '';
|
||||||
|
if (l.indexOf('→') != -1) {
|
||||||
|
newLines.push(`${tab}🔀 ${l.replace('→', '🢧')}`);
|
||||||
|
}
|
||||||
|
else if (l.indexOf('CC') != -1) {
|
||||||
|
newLines.push(`${tab}🙋 ${l}`);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
newLines.push(`${tab}🔼 ${l}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
h.innerHTML = newLines.join('<hr>')
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue