apify icon indicating copy to clipboard operation
apify copied to clipboard

Deep links to private members don't work

Open peterflynn opened this issue 10 years ago • 0 comments

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/)

peterflynn avatar Nov 26 '14 00:11 peterflynn