witten
/
luminotes
Archived
1
0
Fork 0

Made it clearer whether the invitee has accepted a particular invite yet.

This commit is contained in:
Dan Helfman 2008-05-06 06:23:51 +00:00
parent 5a3bb508b2
commit 60e07faf79
3 changed files with 16 additions and 1 deletions

9
NEWS
View File

@ -7,6 +7,15 @@
would give a "list index out of range" error instead of an access error.
* Fixed a bug where the Valid_id() validator would raise a TypeError when
given a None value. Now raising a ValueError instead.
* Fixed a bug where saving a note unsuccessfully could cause the note's
title show up in the recent updates list.
* If there is an error saving a note, then even if "hide" was clicked, the
note is not hidden. Instead, the note stays open so that the user can try
again.
* Fixed a bug where renaming a note to have no title caused the title to
show up as completely blank in the recent updates list. Now it shows up as
"untitled note".
* Made it clearer whether the invitee has accepted a particular invite yet.
1.3.13: May 5, 2008
* Instructions for enabling JavaScript, linked from various forms that

View File

@ -136,3 +136,7 @@ ol li {
.search_results_summary {
font-size: 82%;
}
.invite_status {
font-size: 82%;
}

View File

@ -1517,7 +1517,9 @@ Wiki.prototype.display_invites = function ( invite_area ) {
appendChildNodes(
add_invite_to, createDOM( "div", { "class": "invite" },
invite.email_address, " ",
( invite.redeemed_username ? "(" + invite.redeemed_username + ")" : "" ),
createDOM( "span", { "class": "invite_status" },
invite.redeemed_username ? "(invite accepted by " + invite.redeemed_username + ")" : "(waiting for invite to be accepted)"
),
" ", revoke_button )
);