Adam Shaw

Results 401 comments of Adam Shaw

very sorry about the lack of progress here. I'll take a look at this for the next bugfix release.

The root cause of this bug is now fixed in [v6.1.12](https://github.com/fullcalendar/fullcalendar/releases/tag/v6.1.12), thought with some caveats. Updated repro: https://codepen.io/arshaw/pen/rNgeRZL?editors=0110 Caveats: The `transform: translateY(#)` CSS statements is confusing FullCalendar's coordinate system. When...

The remaining positioning bug of the mirror element is due to this: https://achrafkassioui.com/blog/position-fixed-and-CSS-transforms/ It's because the mirror-element is position:fixed and within the calendar, which gets messed up when there's a...

When first implementing this, I was under the impression that `title` was superior to `aria-label` but I can see now that I was misinformed: https://www.w3.org/WAI/tutorials/forms/labels/#using-the-title-attribute I'll reassess. Thanks for your...

In [v7.0.0-beta.4](https://github.com/fullcalendar/fullcalendar-workspace/releases/tag/v7.0.0-beta.4), we are now using `aria-label` as opposed to `title`. Updated repro: https://codepen.io/arshaw/pen/JoPpyEy

I will try to fix this for next bugfix release

This has been fixed in [v7.0.0-rc.0](https://github.com/fullcalendar/fullcalendar-workspace/releases/tag/v7.0.0-rc.0) Updated repro: https://codepen.io/arshaw/pen/KwKzYRb?editors=0011

sorry for the troubles. it's actually `eventEditable` instead of `editable` when on the resource object: https://codepen.io/arshaw/pen/vYKxbBo?editors=0010 the docs make no mention of this however :( nor do the docs make...

In your example, when the `loadEvents` function is pulled out to a top-level function, things work: https://codesandbox.io/s/react-fullcalendar-maximum-update-depth-exceeded-forked-dmxo6?file=/src/Calendar.js When it is a closure within the render function, it is a new...