Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Switched Immediately-Invoked Function Expression parentheses from Crockford-style to the more conventional/portable style. See https://stackoverflow.com/questions/9053842/ for details. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5d9d62d8188187a44cd2d578b6d825c4 |
| User & Date: | stephan 2019-07-02 05:53:00.393 |
Context
|
2019-07-06
| ||
| 20:29 | For the tar / zip web pages, avoid dangling references involving zRid. check-in: dbe16d7bb4 user: mistachkin tags: trunk | |
|
2019-07-02
| ||
| 06:37 | Replaced the forum post DIV ids forum{RID} with post-{short-UUID}, which allowed removal of the new A NAME tag and enables permalinks (RIDs are volatile). Added forumPost class to all post DIVs, to hopefully simplify some upcoming JS code. check-in: 69364ba515 user: stephan tags: forum-reply-links | |
| 05:53 | Switched Immediately-Invoked Function Expression parentheses from Crockford-style to the more conventional/portable style. See https://stackoverflow.com/questions/9053842/ for details. check-in: 5d9d62d818 user: stephan tags: trunk | |
|
2019-07-01
| ||
| 13:38 | Improvements to the help-text for /brlist. check-in: 611fe9b078 user: drh tags: trunk | |
Changes
Changes to src/forum.js.
| ︙ | ︙ | |||
12 13 14 15 16 17 18 |
if(x[0]){
var w = window.innerHeight;
var h = x[0].scrollHeight;
var y = absoluteY(x[0]);
if( w>h ) y = y + (h-w)/2;
if( y>0 ) window.scrollTo(0, y);
}
| | | 12 13 14 15 16 17 18 19 |
if(x[0]){
var w = window.innerHeight;
var h = x[0].scrollHeight;
var y = absoluteY(x[0]);
if( w>h ) y = y + (h-w)/2;
if( y>0 ) window.scrollTo(0, y);
}
})()
|