杨舟
杨舟
``` function Child() { Parent.call(this); this.name = 'child'; } Child.prototype = Parent.prototype; Child.prototype.constructor = Child; ``` I think the line Child.prototype = Parent.prototype should be **Child.prototype = Object.create(Parent.prototype);**
Hi, I found two plugins `gatsby-remark-mermaid` and `gatsby-plugin-printer` depends on `puppeteer ` which will download chrome instance during installing. More importantly, it will throw an error and result to building...
Tabbing through event links is not in order of event start times when there are overlapping events
### Reduced Test Case Try this link: https://codesandbox.io/s/fullcalendar-timeline-taborder-issue-y0rzvm-forked-kewdnp?file=/src/App.js ### Bug Description Describe how to recreate the bug. Using Tab keyboard to focus and check the 5 event order. What do...