Trac highlight last click in timeline - tetracore.local

4/27/2022, 3:11:16 PM

// ==UserScript==
// @name        Trac highlight last click in timeline - tetracore.local
// @namespace   Violentmonkey Scripts
// @match       http*://trac.tetracore.local/*/timeline
// @grant       none
// @version     1.0
// @author      mrculler
// @description 4/27/2022, 3:11:16 PM
// @license public domain
// ==/UserScript==

document.querySelectorAll(".changeset").forEach(function(el) {
  el.onmousedown = function() {
    document.querySelectorAll(".changeset").forEach(function(oel) { 
      oel.style.backgroundColor = null;
    });
    el.style.backgroundColor = "aliceblue"; 
  }; 
});