tmedwards / sugarcube-2

SugarCube is a free (gratis and libre) story format for Twine/Twee.
https://www.motoslave.net/sugarcube/2/
BSD 2-Clause "Simplified" License
177 stars 41 forks source link

StoryMenu broken with new event system #262

Closed HenryLoenwind closed 2 months ago

HenryLoenwind commented 1 year ago

Describe the bug. In develop, StoryMenu is broken.

I tracked it down to

251: jQuery(document).on(':uiupdate${EVENT_NS}', () => {

This installs an event handler for:

image

Not quite what was intended, as ${EVENT_NS} should be expanded to .ui-bar.

Replacing the ' with backticks fixes that, but exposes a second issue:

image

The new code adds an extra <ul>:

image

A possible fix is:

#menu ul ul {
  display: contents;
}

But naturally, getting rid of the extra <ul>s would be the cleaner approach.

HenryLoenwind commented 1 year ago

Thanks.