Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Also disable shortcut handling if the View Style drop-down list has keyboard focus. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | timeline-keyboard-navigation |
| Files: | files | file ages | folders |
| SHA3-256: |
f419c7ebe7193a328e36826cdc1ac36e |
| User & Date: | florian 2022-08-15 10:21:00.000 |
Context
|
2022-08-15
| ||
| 10:25 | Simplification and harmonisation of the help text. ... (check-in: 6d10841735 user: florian tags: timeline-keyboard-navigation) | |
| 10:21 | Also disable shortcut handling if the View Style drop-down list has keyboard focus. ... (check-in: f419c7ebe7 user: florian tags: timeline-keyboard-navigation) | |
|
2022-08-14
| ||
| 08:54 | Merge with trunk to get the latest web UI fixes. ... (check-in: e317872280 user: florian tags: timeline-keyboard-navigation) | |
Changes
Changes to src/graph.js.
| ︙ | ︙ | |||
992 993 994 995 996 997 998 |
'fossil_timeline_kbnav=;expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/';
}
function focusCookieQuery(){
return document.cookie.match(/fossil_timeline_kbnav=1/);
}
focusCacheInit();
document.addEventListener('keydown',function(evt){
| | | 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 |
'fossil_timeline_kbnav=;expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/';
}
function focusCookieQuery(){
return document.cookie.match(/fossil_timeline_kbnav=1/);
}
focusCacheInit();
document.addEventListener('keydown',function(evt){
if( evt.target.tagName=='INPUT' || evt.target.tagName=='SELECT' ) return;
var
mSHIFT = 1<<13,
kFRST = mSHIFT | 78 /* SHIFT+N */,
kNEXT = 78 /* N */,
kPREV = 77 /* M */,
kLAST = mSHIFT | 77 /* SHIFT+M */,
kCYCL = 74 /* J */,
|
| ︙ | ︙ |