Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix for click-to-diff in IE8, tested this time using IE9 in compatibility mode. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0bb8184e3c1d21cd012db2f0cda8d915 |
| User & Date: | drh 2012-12-07 14:57:55.426 |
Context
|
2012-12-08
| ||
| 00:41 | Merge markdown support for embedded documentation into the trunk. ... (check-in: 61079c3bef user: mistachkin tags: trunk) | |
|
2012-12-07
| ||
| 20:58 | Merge updates from trunk. ... (Closed-Leaf check-in: de1ef7e99f user: mistachkin tags: markdown) | |
| 14:57 | Fix for click-to-diff in IE8, tested this time using IE9 in compatibility mode. ... (check-in: 0bb8184e3c user: drh tags: trunk) | |
| 14:33 | Attempt to get click-to-diff working on IE8. ... (check-in: ce99889c68 user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
764 765 766 767 768 769 770 |
@ if(window.pageXOffset!=null){
@ x += window.pageXOffset;
@ y += window.pageYOffset;
@ }else{
@ var d = window.document.documentElement;
@ if(document.compatMode!="CSS1Compat") d = d.body;
@ x += d.scrollLeft;
| | | 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 |
@ if(window.pageXOffset!=null){
@ x += window.pageXOffset;
@ y += window.pageYOffset;
@ }else{
@ var d = window.document.documentElement;
@ if(document.compatMode!="CSS1Compat") d = d.body;
@ x += d.scrollLeft;
@ y += d.scrollTop;
@ }
#endif
@ for(var i in rowinfo){
@ p = rowinfo[i];
@ if( p.y<y-10 ) continue;
@ if( p.y>y+10 ) break;
@ if( p.x>x-10 && p.x<x+10 ){
|
| ︙ | ︙ |