apify
apify copied to clipboard
Deep links to private members don't work
E.g. http://brackets.io/docs/current/modules/view/MainViewManager.html#-_sortWorkingSet
Private members are hidden by default, so the hash part of the URL won't scroll to it. Fixing this might be as simple as something like:
.member.private:target {
display: block;
}
(see http://css-tricks.com/on-target/)