Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the cursor to "pointer" when mousing over nodes of the timeline graph, as a hint to users that they can click on the node. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4175c90f9522299c07ae4da5d19b93a5 |
| User & Date: | drh 2013-05-28 14:08:18.886 |
Context
|
2013-05-28
| ||
| 15:17 | Add the Tips and Usage Hints document. ... (check-in: fda5b81880 user: drh tags: trunk) | |
| 14:08 | Change the cursor to "pointer" when mousing over nodes of the timeline graph, as a hint to users that they can click on the node. ... (check-in: 4175c90f95 user: drh tags: trunk) | |
| 10:53 | Fix a division by zero that can occur when trying to annotate a file that has never been changed. ... (check-in: f370ab3948 user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
652 653 654 655 656 657 658 659 660 661 662 663 664 665 |
@ n.style.position = "absolute";
@ n.style.overflow = "hidden";
@ n.style.left = x0+"px";
@ n.style.top = y0+"px";
@ n.style.width = w+"px";
@ n.style.height = h+"px";
@ n.style.backgroundColor = color;
@ canvasDiv.appendChild(n);
@ return n;
@ }
@ function absoluteY(id){
@ var obj = gebi(id);
@ if( !obj ) return;
@ var top = 0;
| > | 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 |
@ n.style.position = "absolute";
@ n.style.overflow = "hidden";
@ n.style.left = x0+"px";
@ n.style.top = y0+"px";
@ n.style.width = w+"px";
@ n.style.height = h+"px";
@ n.style.backgroundColor = color;
@ n.style.cursor = "pointer";
@ canvasDiv.appendChild(n);
@ return n;
@ }
@ function absoluteY(id){
@ var obj = gebi(id);
@ if( !obj ) return;
@ var top = 0;
|
| ︙ | ︙ |