]> src.twobees.de Git - tampermonkeyscripts.git/commitdiff
Revert "fix comments in Bugs opened via mention email notification"
authorTobias Sachs <git-pngdhxpf-ts@twobees.de>
Thu, 15 Oct 2020 07:26:41 +0000 (09:26 +0200)
committerTobias Sachs <git-pngdhxpf-ts@twobees.de>
Thu, 15 Oct 2020 07:26:41 +0000 (09:26 +0200)
This reverts commit 63e6bac9581fb9ff0cb598ca588e709b29599add.

AzureDevOpsCommentEnhancer.user.js

index c7f60453493c3a5d0db5b9ec39c9f6a1138ba50a..302769dadba0d68c23da9b205e2c28ad9ac134c8 100755 (executable)
@@ -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
     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 = () => {