Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix race condition in search box javascript that could occur if the user started to enter text before the page was completely loaded. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
902e250d4163c0b539308a7f1542ec42 |
User & Date: | dan 2010-07-27 08:10:59.000 |
Context
2010-07-27
| ||
13:22 | Update the documentation for SQLITE_DEFAULT_AUTOVACUUM to cover the incremental vacuum option. (check-in: 39f2677bb7 user: drh tags: trunk) | |
08:10 | Fix race condition in search box javascript that could occur if the user started to enter text before the page was completely loaded. (check-in: 902e250d41 user: dan tags: trunk) | |
2010-07-26
| ||
16:57 | Initial documentation changes for the 3.7.1 release. (check-in: f02b06bd3c user: drh tags: trunk) | |
Changes
Changes to wrap.tcl.
︙ | ︙ | |||
454 455 456 457 458 459 460 | <a href="${path}sitemap.html">Sitemap</a> <a href="${path}docs.html">Documentation</a> <a href="${path}download.html">Download</a> <a href="${path}copyright.html">License</a> <a href="${path}news.html">News</a> <a href="${path}support.html">Support</a> </div>} | < < < < < < < < < < | < < < < | < > | | | > > > > | > > | > > | < | 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 | <a href="${path}sitemap.html">Sitemap</a> <a href="${path}docs.html">Documentation</a> <a href="${path}download.html">Download</a> <a href="${path}copyright.html">License</a> <a href="${path}news.html">News</a> <a href="${path}support.html">Support</a> </div>} if {[file exists SEARCH]} { putsin4 $fd {<script> gMsg = "Search SQLite Docs..." function entersearch() { var q = document.getElementById("q"); if( q.value == gMsg ) { q.value = "" } q.style.color = "black" q.style.fontStyle = "normal" } function leavesearch() { var q = document.getElementById("q"); if( q.value == "" ) { q.value = gMsg q.style.color = "#044a64" q.style.fontStyle = "italic" } } </script>} } if {[file exists SEARCH]} { putsin4 $fd {<td> <div style="padding:0 1em 0px 0;white-space:nowrap"> <form name=f method="GET" action="http://www.sqlite.org/search"> <input id=q name=q type=text onfocus="entersearch()" onblur="leavesearch()" style="width:24ex;padding:1px 1ex; border:solid white 1px; font-size:0.9em ; font-style:italic;color:#044a64;" value="Search SQLite Docs..."> <input type=submit value="Go" style="border:solid white 1px;background-color:#044a64;color:white;font-size:0.9em;padding:0 1ex"> </form> </div> </table>} } putsin4 $fd {</div></div></div></div> </td></tr></table> <div class=startsearch></div> } if {$srcfile!=""} { if {[file exists DRAFT]} { set hd(footer) { <p align="center"><font size="6" color="red">*** DRAFT ***</font></p> } } else { set hd(footer) {} |
︙ | ︙ |