]> src.twobees.de Git - tampermonkeyscripts.git/commitdiff
wait longer, to make sure all(?) data is loaded when working over slow connections
authorTobias Sachs <git-pngdhxpf-ts@twobees.de>
Thu, 15 Oct 2020 07:28:25 +0000 (09:28 +0200)
committerTobias Sachs <git-pngdhxpf-ts@twobees.de>
Thu, 15 Oct 2020 07:28:25 +0000 (09:28 +0200)
AzureDevOpsCommentEnhancer.user.js

index 302769dadba0d68c23da9b205e2c28ad9ac134c8..754343aebacf72f0d596c0c19a28c7b5bc2d150a 100755 (executable)
@@ -1,6 +1,6 @@
 // ==UserScript==
 // @name         Fix ADS checkin comments in discussion and history of workitems
-// @version      0.10
+// @version      0.11
 // @author       Tobias Sachs
 //  ... in @match replace "ads" with the url of you Azure DevOps Server
 // @match        https://ads/*
@@ -10,6 +10,7 @@
 // @description
 // ==/UserScript==
 
+// 0.11: wait longer, to make sure all(?) data is loaded when working over slow connections
 // 0.10: #Bugnumber to links, highlight comments for customors in checkins
 // 0.09: update download/update URLs
 // 0.08: fix typos/formatting
@@ -94,7 +95,7 @@
 
             // keep watching for changes
             observer.observe(document, { subtree: true, childList: true, characterData: true });
-        }, 300);
+        }, 600);
     };
 
     const observer = new MutationObserver(function() {