Closed v-k- closed 9 years ago
The variable "menuItems" is declared as: String[] menuItems; and should be String[][] menuItems;
as it is initialized latter like this:
menuItems = new String[] { new String[] {"Rectangle"}, new String[] {"Ellipse"}, new String[] {"Star"}, new String[] {"Spirograph"} };
And the js function is waiting for an array of arrays.
Thanks, will fix for next release.
The variable "menuItems" is declared as: String[] menuItems; and should be String[][] menuItems;
as it is initialized latter like this:
menuItems = new String[] { new String[] {"Rectangle"}, new String[] {"Ellipse"}, new String[] {"Star"}, new String[] {"Spirograph"} };
And the js function is waiting for an array of arrays.