Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the anti-robot logic so that auto-hyperlink-mouseover actually works and so that the "mouseover" setting sent down to javascript is determined only by the setting on the Access page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
37f23f3764976a362ecc483ba9b35e76 |
| User & Date: | drh 2019-05-14 11:17:21.658 |
Context
|
2019-05-14
| ||
| 11:22 | Fix the javascript used to activate hyperlinks. ... (check-in: 6b139de03f user: drh tags: trunk) | |
| 11:17 | Fix the anti-robot logic so that auto-hyperlink-mouseover actually works and so that the "mouseover" setting sent down to javascript is determined only by the setting on the Access page. ... (check-in: 37f23f3764 user: drh tags: trunk) | |
|
2019-05-13
| ||
| 01:47 | Add "Yesterday" and "Tomorrow" submenu links on the /thisdayinhistory page. ... (check-in: d0de24fe86 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
571 572 573 574 575 576 577 |
/*
** Generate code to load all required javascript files.
*/
static void style_load_all_js_files(void){
int i;
if( needHrefJs ){
int nDelay = db_get_int("auto-hyperlink-delay",0);
| < < < | | 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
/*
** Generate code to load all required javascript files.
*/
static void style_load_all_js_files(void){
int i;
if( needHrefJs ){
int nDelay = db_get_int("auto-hyperlink-delay",0);
int bMouseover = db_get_boolean("auto-hyperlink-mouseover",0);
@ <script id='href-data' type='application/json'>\
@ {"delay":%d(nDelay),"mouseover":%d(bMouseover)}</script>
}
@ <script nonce="%h(style_nonce())">
if( needHrefJs ){
cgi_append_content(builtin_text("href.js"),-1);
}
|
| ︙ | ︙ |