// ==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/*
// @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
// keep watching for changes
observer.observe(document, { subtree: true, childList: true, characterData: true });
- }, 300);
+ }, 600);
};
const observer = new MutationObserver(function() {