menu depth stops at 3
The feature list states:
"unlimited menu depth with all levels independently configurable ".
I am having trouble getting my menu to go more than three deep. I am calling the "menu()" function with "CONTENTS_MENU" as my
first argument. Here is my array:
var CONTENTS_MENU=
[
["level0", null,
["level 0.1", null,
["level 0.1.1", null,
["level 0.1.1.1", null,
["level 0.1.1.1.1", null]
]
]
]
]
];
As is, I get "invalid property value" error.
If I remove level's 0.1.1.1 AND 0.1.1.1.1,
then the error disappears and my menu loads.
see broken menu at www.shortt.org/menu_test.html.
Any help is appreciated.
|