witten
/
luminotes
Archived
1
0
Fork 0

Fixed a visual bug in which clicking up or down to reorder your notebooks didn't display correctly.

This commit is contained in:
Dan Helfman 2008-10-09 12:53:57 -07:00
parent 9761d7d622
commit b18cd1dca2
3 changed files with 7 additions and 3 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
1.5.4: October 9, 2008
* Fixed a visual bug in which clicking up or down to reorder your notebooks
didn't display correctly.
1.5.3: October 9, 2008
* Safari and Chrome web browsers are now supported (beta):
* You can now create and end links.

View File

@ -277,8 +277,8 @@ class Front_page( Product_page ):
P(
u"""
Luminotes is a WYSIWYG personal wiki notebook for organizing your notes and ideas.
You don't have to use any special markup codes or install any software. You
simply start typing.
It's designed for note taking and note keeping without the hassle
of learning special markup codes. You simply start typing.
""",
),
Table(

View File

@ -22,6 +22,6 @@ class Rounded_div( Div ):
Div.__init__(
self,
div,
id = u"%s_wrapper" % image_name,
id = u"%s_wrapper" % ( kwargs.get( u"id" ) or image_name ),
class_ = u"%s_color" % image_name,
)