From 00c5bd4ebd53f296f86b9582f7c905842d021373 Mon Sep 17 00:00:00 2001 From: Tobias Sachs Date: Thu, 15 Oct 2020 09:28:25 +0200 Subject: [PATCH] wait longer, to make sure all(?) data is loaded when working over slow connections --- AzureDevOpsCommentEnhancer.user.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/AzureDevOpsCommentEnhancer.user.js b/AzureDevOpsCommentEnhancer.user.js index 302769d..754343a 100755 --- a/AzureDevOpsCommentEnhancer.user.js +++ b/AzureDevOpsCommentEnhancer.user.js @@ -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() { -- 2.39.2