Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Replace the three bullets with a midline ellipsis character in the timelines. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | declutter-via-js |
| Files: | files | file ages | folders |
| SHA3-256: |
7b9cfa99c37205331bbe22a31d352238 |
| User & Date: | drh 2017-11-26 01:34:57.464 |
Context
|
2017-11-26
| ||
| 01:37 | The javascript Advanced/Basic toggles on the timelines is working well enough now to merge to trunk. check-in: e91d267205 user: drh tags: trunk | |
| 01:34 | Replace the three bullets with a midline ellipsis character in the timelines. Closed-Leaf check-in: 7b9cfa99c3 user: drh tags: declutter-via-js | |
| 01:29 | Fix a javascript error in toggleEllipsis() in the /timeline. check-in: 4d6fda6de4 user: drh tags: declutter-via-js | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
527 528 529 530 531 532 533 |
@ onclick='toggleEllipsis(%d(frid))'>
@ %W(zCom)</span>
if( bHashAfterComment && zUuid ){
hyperlink_to_uuid(zUuid);
}
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(frid)' \
| | | 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
@ onclick='toggleEllipsis(%d(frid))'>
@ %W(zCom)</span>
if( bHashAfterComment && zUuid ){
hyperlink_to_uuid(zUuid);
}
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(frid)' \
@ onclick='expandEllipsis(%d(frid))'>⋯</span>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
| ︙ | ︙ |
Changes to src/style.c.
| ︙ | ︙ | |||
1534 1535 1536 1537 1538 1539 1540 |
"Message explaining that there are no search results",
@ font-style: italic;
},
{ ".clutter",
"Detail screen objects",
@ display: none;
},
| < < < < | 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 |
"Message explaining that there are no search results",
@ font-style: italic;
},
{ ".clutter",
"Detail screen objects",
@ display: none;
},
{ 0,
0,
0
}
};
/*
|
| ︙ | ︙ |
Changes to src/timeline.c.
| ︙ | ︙ | |||
554 555 556 557 558 559 560 |
/* Generate extra information and hyperlinks to follow the comment.
** Example: "(check-in: [abcdefg], user: drh, tags: trunk)"
*/
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(rid)' \
| | | 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
/* Generate extra information and hyperlinks to follow the comment.
** Example: "(check-in: [abcdefg], user: drh, tags: trunk)"
*/
if( bShowDetail ){
@ <span class='timelineEllipsis anticlutter' id='ellipsis-%d(rid)' \
@ onclick='expandEllipsis(%d(rid))'>⋯</span>
if( bSeparateDetail ){
if( zBgClr && zBgClr[0] && rid!=selectedRid ){
@ <td class="timelineTableCell timelineDetailCell"
@ style="background-color: %h(zBgClr);">
}else{
@ <td class="timelineTableCell timelineDetailCell">
}
|
| ︙ | ︙ |