We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8e40eb commit 4253c62Copy full SHA for 4253c62
static/menu.js
@@ -281,7 +281,10 @@
281
e.preventDefault();
282
e.stopPropagation();
283
}
284
- } else if (e.target.parentNode.classList.contains("pure-menu-has-children")) {
+ } else if (e.target.parentNode &&
285
+ e.target.parentNode.classList &&
286
+ e.target.parentNode.classList.contains("pure-menu-has-children")
287
+ ) {
288
switch (e.key.toLowerCase()) {
289
case "arrowdown":
290
case "down":
0 commit comments