Differences From Artifact [0b07f407f5]:
- File src/diff.js — part of check-in [be9602d0df] at 2021-09-07 22:24:43 on branch trunk — Made diff view table 100% wide instead of 98%. The unsightly horizontal scrollbars still don't appear at that width and this eliminates an odd-looking gap on the right. (user: stephan size: 2465)
To Artifact [12ea016593]:
- File src/diff.js — part of check-in [c624ed868e] at 2021-09-10 15:53:26 on branch trunk — Implemented diff.js arrow key scroll fix from [566b7f1165293655]. (user: stephan size: 2465)
| ︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - + |
};
}
diff.tabIndex = 0;
diff.onkeydown = function(e){
e = e || event;
var len = {37: -SCROLL_LEN, 39: SCROLL_LEN}[e.keyCode];
if( !len ) return;
|
| ︙ |