Fossil

Check-in [bb59cc264e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix dynamic style assignment.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | timeline-keyboard-navigation
Files: files | file ages | folders
SHA3-256: bb59cc264ea8ed03d3a47912eab7f83d64109451d236a0a659933d8c2156dacb
User & Date: florian 2022-07-29 10:26:00.000
Context
2022-07-29
10:27
Drop a redundant check. ... (check-in: d145d92d14 user: florian tags: timeline-keyboard-navigation)
10:26
Fix dynamic style assignment. ... (check-in: bb59cc264e user: florian tags: timeline-keyboard-navigation)
10:24
Omit the expiration date when creating the session cookie. ... (check-in: 540955bd36 user: florian tags: timeline-keyboard-navigation)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/graph.js.
884
885
886
887
888
889
890

891
892
893
894
895
896
897
898
      }
      return false;
    }
    var kf = document.getElementById('timeline-kbfocus');
    if( !kf ){
      kf = document.createElement('input');
      kf.type = 'text';

      kf.style = 'display:none;visibility:hidden;';
      kf.id = 'timeline-kbfocus';
      document.body.appendChild(kf);
    }
    document.addEventListener('keydown',function(evt){
      var
        kNEXT = 78 /* N */,
        kPREV = 77 /* M */,







>
|







884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
      }
      return false;
    }
    var kf = document.getElementById('timeline-kbfocus');
    if( !kf ){
      kf = document.createElement('input');
      kf.type = 'text';
      kf.style.display = 'none';
      kf.style.visibility = 'hidden';
      kf.id = 'timeline-kbfocus';
      document.body.appendChild(kf);
    }
    document.addEventListener('keydown',function(evt){
      var
        kNEXT = 78 /* N */,
        kPREV = 77 /* M */,