Opened 14 years ago
Closed 14 years ago
#17546 closed defect (bug) (fixed)
Unable to publish multiple posts using QuickPress without first refreshing the page
Reported by: | designsimply | Owned by: | azaozz |
---|---|---|---|
Milestone: | 3.2 | Priority: | high |
Severity: | blocker | Version: | 3.2 |
Component: | Administration | Keywords: | has-patch |
Focuses: | Cc: |
Description
When publishing posts using the QuickPress widget in a blog's Dashboard you are required to refresh the page before you can post another time.
To reproduce:
- Open a WordPress dashboard.
- Publish a new post on your blog using QuickPress.
- Enter a new title and body content and try to publish this second post.
The Publish button will be deselected and cannot be activated to publish another post. Refreshing the page resets QuickPress so that another post can be published.
Ideally QuickPress would allow more posts without requiring a page refresh. Posting quickly with this tool is great for many users and forcing a page load is a hassle for some.
Possible resolutions:
- Add a "Reset form" link to the updated notice that appears after a QuickPress post is saved.
- Or, reset the form automatically after a 5-10s delay.
Attachments (2)
Change History (7)
#1
@
14 years ago
- Component changed from General to Administration
- Keywords needs-patch added; dev-feedback removed
- Milestone changed from Awaiting Review to 3.2
- Priority changed from normal to high
- Severity changed from normal to blocker
#2
@
14 years ago
- Keywords has-patch added; needs-patch removed
- Version set to 3.2
Patch switches to using removeAttr rather then attr and an empty string
#4
in reply to:
↑ 3
@
14 years ago
Replying to ocean90:
Yes, .attr()
vs .prop()
vs removeAttr()
vs .removeProp()
(vs .data()
?). Apparently .removeProp()
removes that property completely so you can't set it to true|false later. Seems the proper way for here is .prop('something', false)
as in your patch.
This is a regression. We simply need to restore its old behavior.