CMS toolbar menu's don't work
See original GitHub issueThe drop down menu’s for ‘example.com’, ‘Page’, ‘History’, ‘Language’ in the toolbar aren’t responding to clicks.
I can login via the toolbar, the ‘django CMS’ logo takes me home, I can toggle draft/live, publish and switch from content and structure. But those all important drop down menus simply don’t work.
There are no console errors and inspecting the toolbar shows the lists with content so I assume this is just a javascript problem that I can’t see in the console.
Has someone seen this before? I can’t find anything with searches 👎
edit
One of our designers has been getting past this by disabling the display: none
on the <ul>
for the toolbar which looks horrible, but allows you to get to toolbar items.
The full selector for the display property is #cms_toolbar .cms_toolbar-item-navigation li ul
Issue Analytics
- State:
- Created 9 years ago
- Comments:10 (10 by maintainers)
Top GitHub Comments
I’ve found the issue! (HURRAH!)
Somehow
{% render_block "js" %}
had been included inbase.html
in the head and also at the end of the body, so I guess the duplicated js was causing the click event to run twice, adding and then immediately removing the hover class.Good news 😉