Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | For the ellipses in timelines from three bullet characters. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | declutter-via-js |
| Files: | files | file ages | folders |
| SHA3-256: |
cef3d63c545b8e0fc09c6b693800e978 |
| User & Date: | drh 2017-11-26 00:37:53.708 |
Context
|
2017-11-26
| ||
| 00:41 | Default CSS for timeline ellipsis. check-in: 9b739d1d93 user: drh tags: declutter-via-js | |
| 00:37 | For the ellipses in timelines from three bullet characters. check-in: cef3d63c54 user: drh tags: declutter-via-js | |
|
2017-11-25
| ||
| 21:21 | Add the javascript Advanced/Basic buttons to the /finfo timeline. check-in: 6eaad787a8 user: drh tags: declutter-via-js | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
524 525 526 527 528 529 530 |
hyperlink_to_uuid(zUuid);
}
@ <span class="timelineComment timelineCheckinComment">%W(zCom)</span>
if( bHashAfterComment && zUuid ){
hyperlink_to_uuid(zUuid);
}
if( bShowDetail ){
| | | | 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 |
hyperlink_to_uuid(zUuid);
}
@ <span class="timelineComment timelineCheckinComment">%W(zCom)</span>
if( bHashAfterComment && zUuid ){
hyperlink_to_uuid(zUuid);
}
if( bShowDetail ){
@ <a class='timelineEllipsis anticlutter' id='ellipsis-%d(frid)' \
@ onclick='expandEllipsis(%d(frid))'>•••</a>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
| ︙ | ︙ |
Changes to src/timeline.c.
| ︙ | ︙ | |||
552 553 554 555 556 557 558 |
}
/* Generate extra information and hyperlinks to follow the comment.
** Example: "(check-in: [abcdefg], user: drh, tags: trunk)"
*/
if( bShowDetail ){
| | | | 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 |
}
/* Generate extra information and hyperlinks to follow the comment.
** Example: "(check-in: [abcdefg], user: drh, tags: trunk)"
*/
if( bShowDetail ){
@ <a class='timelineEllipsis anticlutter' id='ellipsis-%d(rid)' \
@ onclick='expandEllipsis(%d(rid))'>•••</a>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] && rid!=selectedRid ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
| ︙ | ︙ |