Lauren Lee McCarthy

Results 118 comments of Lauren Lee McCarthy

Hi you two, I made some progress and am able to get some text output, you can see my changes in the [access branch](https://github.com/processing/p5.js-website/commit/24f778525101bf09ddad46c932c9bdf26519938d) However, I'm getting these errors with...

I think the issue actually might be that the lists have css property `list-style: none` which also hides it from screen readers. so what we actually need here is roles...

@Rahulm2310 ah ok. I'm good to merge your fix then, but are you able to provide any link that explains what's happening and how this fixes it? I just want...

@Rahulm2310 yes this was my understanding as well. That's why I thought adding the role="list" should address the issue, see references: https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html https://gerardkcohen.me/writing/2017/voiceover-list-style-type.html

Thank you. I was asking for a link that explains why using aria-labeledby prevents reading of lists.

also see #284 and #72 for relevant comments

thanks for the feedback. the information for modifying the reference documentation is [here](https://github.com/processing/p5.js/blob/master/developer_docs/inline_documentation.md). let me know if you can think of places this link should be, so others can find...

one reason we keep the documentation in the source code is to couple the code with documentation. it makes it easier to update documentation as you're changing code, so you...

@hellonearthis check out section on branches here: https://guides.github.com/activities/hello-world/#branch

I was able to get this to work by calling: ```js videoElement.components.vimeo.player.play(); videoElement.components.vimeo.player.pause(); ``` instead of ```js videoElement.components.vimeo.play(); videoElement.components.vimeo.pause(); ```