Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Squished a few more "the the" grammar errors in comments |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
40521155c3f62887f5154b1e018cb199 |
| User & Date: | wyoung 2020-07-02 17:28:25.128 |
Context
|
2020-07-02
| ||
| 20:54 | Updates to the change log and to the /timeline documentation. ... (check-in: ea4010d58a user: drh tags: trunk) | |
| 17:28 | Squished a few more "the the" grammar errors in comments ... (check-in: 40521155c3 user: wyoung tags: trunk) | |
| 16:55 | Fix typos in comments in backoffice.c - one of which is part of the built-in help. ... (check-in: 5b4d2df00c user: drh tags: trunk) | |
Changes
Changes to src/fossil.confirmer.js.
| ︙ | ︙ | |||
33 34 35 36 37 38 39 |
Default=("Confirm: "+initialText), or something similar.
.timeout = Number of milliseconds to wait for confirmation.
Default=3000. Alternately, use a combination of .ticks and
.ticktime.
.onconfirm = function to call when clicked in confirm mode. Default
| | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
Default=("Confirm: "+initialText), or something similar.
.timeout = Number of milliseconds to wait for confirmation.
Default=3000. Alternately, use a combination of .ticks and
.ticktime.
.onconfirm = function to call when clicked in confirm mode. Default
= undefined. The function's "this" is the DOM element to which
the countdown applies.
.ontimeout = function to call when confirm is not issued. Default =
undefined. The function's "this" is the DOM element to which the
countdown applies.
.onactivate = function to call when item is clicked, but only if the
|
| ︙ | ︙ |
Changes to src/main.c.
| ︙ | ︙ | |||
1781 1782 1783 1784 1785 1786 1787 |
}
}
}
/* At this point, the appropriate repository database file will have
** been opened.
**
| | | 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 |
}
}
}
/* At this point, the appropriate repository database file will have
** been opened.
**
** Check to see if the PATH_INFO begins with "draft[1-9]" and if
** so activate the special handling for draft skins
*/
if( zPathInfo && strncmp(zPathInfo,"/draft",6)==0
&& zPathInfo[6]>='1' && zPathInfo[6]<='9'
&& (zPathInfo[7]=='/' || zPathInfo[7]==0)
){
int iSkin = zPathInfo[6] - '0';
|
| ︙ | ︙ |
Changes to src/scroll.js.
|
| | | 1 2 |
/* Cause the page to scroll so that the #scrollToMe is visible */
document.getElementById('scrollToMe').scrollIntoView(true);
|