You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Danbooru is tweaking it's appearance, and this broke random links, and child post are now shown double.
I found the reason for random link not working: sidebar ID's changed, e.g. "add-to-pool-list" was changed to "post-option-add-to-pool". Changing the getElementById values in function addRandomPostLink() to new ones fixed it for me.
I'm guessing similar change is to blame for child posts showing twice when viewing parent image.
[edit] Yeah, BBB is using <div class="ui-corner-all ui-state-highlight notice notice-parent"> while the new infobox has <div class="post-notice post-notice-parent">, which ends up creating two infoboxes.
The text was updated successfully, but these errors were encountered:
Danbooru is tweaking it's appearance, and this broke random links, and child post are now shown double.
I found the reason for random link not working: sidebar ID's changed, e.g. "add-to-pool-list" was changed to "post-option-add-to-pool". Changing the
getElementById
values infunction addRandomPostLink()
to new ones fixed it for me.I'm guessing similar change is to blame for child posts showing twice when viewing parent image.
[edit] Yeah, BBB is using
<div class="ui-corner-all ui-state-highlight notice notice-parent">
while the new infobox has<div class="post-notice post-notice-parent">
, which ends up creating two infoboxes.The text was updated successfully, but these errors were encountered: