witten
/
luminotes
Archived
1
0
Fork 0

Fixed a visual conflict between your web browser's search field autocomplete and Luminotes built-in suggest-as-you-type feature.

This commit is contained in:
Dan Helfman 2008-11-05 15:40:29 -08:00
parent 536e1415e9
commit 8330d8b65c
2 changed files with 7 additions and 1 deletions

2
NEWS
View File

@ -8,6 +8,8 @@
* Made the subscription pricing page a little less confusing by hiding some * Made the subscription pricing page a little less confusing by hiding some
of the bigger plans by default. of the bigger plans by default.
* Increased the limit on characters per note from 25,000 to 50,000. * Increased the limit on characters per note from 25,000 to 50,000.
* Fixed a visual conflict between your web browser's search field
autocomplete and Luminotes built-in suggest-as-you-type feature.
* Fixed an occasional bug that caused unexpected logouts. The solution was * Fixed an occasional bug that caused unexpected logouts. The solution was
to move the session information into the database where it could be to move the session information into the database where it could be
properly locked. properly locked.

View File

@ -7,6 +7,10 @@ class Search_form( Form ):
Form.__init__( Form.__init__(
self, self,
Input( type = u"text", name = u"search_text", id = u"search_text", maxlength = 512, value = "search" ), Input(
type = u"text", name = u"search_text", id = u"search_text",
maxlength = 512, value = "search",
autocomplete = u"off",
),
id = u"search_form", id = u"search_form",
) )