When expanding spells, sometimes the action lags, and sometimes when attempting to collapse the detail, the spell details section starts repeating. You have to scroll through multiple copies of the spell description.
Problem still occurs. This is because of the sorting of Casting time. The categories are listed by number. For example, 24 Hours, 12 Hours, 10 Minutes, 8 Hours... Oops.
Then you've got the 1 Action vs 1 Minute problem. Both are 1's however a minute is longer than an action.
Problem still occurs. This is because of the sorting of Casting time. The categories are listed by number. For example, 24 Hours, 12 Hours, 10 Minutes, 8 Hours... Oops.
Then you've got the 1 Action vs 1 Minute problem. Both are 1's however a minute is longer than an action.
I think you may be referencing another bug. This one was specifically about how the expanded info for Spells/Items/Monsters was being duplicated in certain edge cases. If you are still talking about that, a screenshot showing it would help me a lot!
It's not exactly the same issue, or at least it isn't readily apparent, but it is still possible to open/close the expansions fast enough that you end up with the +/- switched. I saw it originally with the duplicated issue though so it may be related. This is still on mobile, Samsung Galaxy S6 edge+ with 6.0.1.
Took a screen cap but don't see a way to post it from my phone.
It's not exactly the same issue, or at least it isn't readily apparent, but it is still possible to open/close the expansions fast enough that you end up with the +/- switched. I saw it originally with the duplicated issue though so it may be related. This is still on mobile, Samsung Galaxy S6 edge+ with 6.0.1.
Took a screen cap but don't see a way to post it from my phone.
Ah, I do see that problem when I throttle my network speed. I'll get a ticket in for that as well, thanks for the followup!
Just wanted to chime in, desktop's got a very similar little bug (if not the same) to what Evermeet's reported, sometimes it also messes with other spells opening up or closing, like there's a built-in delay, almost? (Win10, Chrome.) I thought it might be an issue with not running in a maximized window, but didn't make a difference.
Just wanted to chime in, desktop's got a very similar little bug (if not the same) to what Evermeet's reported, sometimes it also messes with other spells opening up or closing, like there's a built-in delay, almost? (Win10, Chrome.) I thought it might be an issue with not running in a maximized window, but didn't make a difference.
I can confirm: Double clicking a spell (or item) on the list for the first time toggles plus sign to minus and back and then opens the spell after a short delay. You can close and reopen the expanded view without problems, but the plus/minus sign stays reversed.
The reason is, that the first click sends an asynchronous ajax request to the page, which on success inserts the detailed info for the spell (or item) into the html code. A click also toggles the plus/minus change and the visibility change on the additional info, but on the first click, the additional info html is not there yet, so it cannot be toggled. The plus/minus on the other hand is toggled.
Suggestion for a fix: Only do the info toggle if data("isloaded") is true. Do the first toggle before setting data("isloaded", "true") in the success function of the ajax request. (This is not really necessary, since the html is inserted visible, so there is nothing to toggle.) Do not toggle the plus/minus change when data("isloading") is true.
When expanding spells, sometimes the action lags, and sometimes when attempting to collapse the detail, the spell details section starts repeating. You have to scroll through multiple copies of the spell description.
Is this on mobile or on desktop? I've not seen this just yet in the desktop version.
I have also noticed this, on my laptop, running Windows 7 and using Chrome.
Thanks for the report, I'll be fixing this!
If it helps, I also noticed this when viewing from my Galaxy S6 Edge+ running on Android 6.0.1.
https://www.dndbeyond.com/forums/d-d-beyond-general/beta-testing-feedback/516-list-expansion-issue
(Couldn't tell if it posted properly from my phone earlier)
Yup that's the same issue. Thanks again for the reports :)
I had the same thing happen in the items section, on iPad
Same problem in spells, again on an iPad.
Attacking the Darkness- Since 2015
I am having an issue when I try to sort the spell list by Casting Time, I get the alphabetical list.
We pushed out a fix. Please let us know if you continue to see this problem anywhere!
Problem still occurs. This is because of the sorting of Casting time. The categories are listed by number. For example, 24 Hours, 12 Hours, 10 Minutes, 8 Hours... Oops.
Then you've got the 1 Action vs 1 Minute problem. Both are 1's however a minute is longer than an action.
Oh darn. That's what I get for opening multiple threads at the same time for follow-up testing.
I did test this out on Chrome and Edge on PC and Chrome and Safari on iPhone. I could not replicate it. :)
Awesome, thanks for testing!
It's not exactly the same issue, or at least it isn't readily apparent, but it is still possible to open/close the expansions fast enough that you end up with the +/- switched. I saw it originally with the duplicated issue though so it may be related. This is still on mobile, Samsung Galaxy S6 edge+ with 6.0.1.
Took a screen cap but don't see a way to post it from my phone.
Just wanted to chime in, desktop's got a very similar little bug (if not the same) to what Evermeet's reported, sometimes it also messes with other spells opening up or closing, like there's a built-in delay, almost? (Win10, Chrome.)
I thought it might be an issue with not running in a maximized window, but didn't make a difference.
Do the first toggle before setting data("isloaded", "true") in the success function of the ajax request.(This is not really necessary, since the html is inserted visible, so there is nothing to toggle.) Do not toggle the plus/minus change when data("isloading") is true.