Add a feed never loads its Popular list when opened over Directory or Popular #1
Notifications
Due Date
No due date set.
Blocks
Reference: rays/ipodderx-rs#1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The dialog and those two panes each render into an element with
id="popular", andlistFeedsfinds it with$('#popular'), which isquerySelector. The main pane comes before the dialog in the page (web/index.html:618,:652), so the list lands in the pane behind the dialog, which then shows the top ten instead of everything, and the dialog stays on "Loading…".Pass the container into
listFeeds. Small, and worth doing before the Directory rework, which touches the same function. (web/index.html:1648)