X-Git-Url: https://src.twobees.de/?p=tampermonkeyscripts.git;a=blobdiff_plain;f=AzureDevOpsCommentEnhancer.user.js;fp=AzureDevOpsCommentEnhancer.user.js;h=302769dadba0d68c23da9b205e2c28ad9ac134c8;hp=c7f60453493c3a5d0db5b9ec39c9f6a1138ba50a;hb=af105b0a05618e965e02e1fc629f0baf225a5a0e;hpb=22049a1360e020ba07a63bc3a73afff08563302f diff --git a/AzureDevOpsCommentEnhancer.user.js b/AzureDevOpsCommentEnhancer.user.js index c7f6045..302769d 100755 --- a/AzureDevOpsCommentEnhancer.user.js +++ b/AzureDevOpsCommentEnhancer.user.js @@ -10,7 +10,6 @@ // @description // ==/UserScript== -// 0.11: #fix comments in Bugs opened via mention email notification // 0.10: #Bugnumber to links, highlight comments for customors in checkins // 0.09: update download/update URLs // 0.08: fix typos/formatting @@ -23,22 +22,18 @@ let timerId; let fixWorkitems = () => { - console.debug("fixWorkitems..."); let found = document.getElementsByClassName("comment-content"); - if (fixCommentContents(found)) return; + fixCommentContents(found); found = document.getElementsByClassName("history-item-comment"); - if (fixCommentContents(found)) return; + fixCommentContents(found); - found = document.getElementsByClassName("comments-section"); - if (fixCommentContents(found)) return; - - console.debug("... notihing found to fix.."); + console.debug("observe..."); }; let fixCommentContents = (items) => { if (items === null || items === undefined || items.length === 0) { - return false; + return; } console.info("fixing '" + items.length +"' comments."); for (var i = 0; i < items.length; i++) { @@ -53,7 +48,6 @@ el.innerHTML = html; } } - reurn true; }; let fixVersionControl = () => {