From af105b0a05618e965e02e1fc629f0baf225a5a0e Mon Sep 17 00:00:00 2001 From: Tobias Sachs Date: Thu, 15 Oct 2020 09:26:41 +0200 Subject: [PATCH] Revert "fix comments in Bugs opened via mention email notification" This reverts commit 63e6bac9581fb9ff0cb598ca588e709b29599add. --- AzureDevOpsCommentEnhancer.user.js | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) 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 = () => { -- 2.39.2