Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add missing semicolon in the anti-robot defense javascript. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
45199458839a5fbec30f9fc10404846a |
User & Date: | drh 2019-07-11 13:58:32 |
Context
2019-07-12
| ||
04:11 | Assorted improvements to www/fossil-v-git.wiki: added hyperlinks, fixed some spelling, capitalization, and grammar problems, clarified "Linux" vs "Linux kernel", clarified the description of the git-worktree feature, moved punctuation inside double quotes (typography), and added a few detail paragraphs. check-in: fd990128 user: wyoung tags: trunk | |
2019-07-11
| ||
13:58 | Add missing semicolon in the anti-robot defense javascript. check-in: 45199458 user: drh tags: trunk | |
13:10 | Minor change to the "aboutdownload" document. check-in: fd8d37e2 user: drh tags: trunk | |
Changes
Changes to src/href.js.
39 40 41 42 43 44 45 46 |
document.getElementsByTagName("body")[0].onmousemove=function(){ setTimeout(setAllHrefs, g.delay); } }else{ setTimeout(setAllHrefs, g.delay); } } antiRobotDefense() |
| |
39 40 41 42 43 44 45 46 |
document.getElementsByTagName("body")[0].onmousemove=function(){
setTimeout(setAllHrefs, g.delay);
}
}else{
setTimeout(setAllHrefs, g.delay);
}
}
antiRobotDefense();
|