Prevent double-posting of new annotations
When the user clicks the 'Post' button to create an annotation, optimistically switch the card back to View mode but display a 'Saving...' indicator in place of the Reply/Edit/Delete links. This makes the UI appear more responsive when the user clicks the Post button and also prevents an issue where the user could click 'Post' multiple times during the save and create multiple annotations. * Fix a possible inconsistency between the 'Post' button's enabled state and whether or not the save() function can succeed. The hasContent() and isShared() methods also already have tests, so this lets us remove several redundant tests. * Fix inconsistency in the return type of the save() function - always return a promise. * Treat negative status values as network errors as well as 0. If the server is unreachable, the real status value may be -1. Fixes #2864
Showing
Please register or sign in to comment