Page 1 of 1

Menu-Issue after update to 11.0.8

Posted: 30 Sep 2022, 08:17
by matrix
After upgrade from 11.0.4 to 11.0.8 I have problems with the Icarus menu.

Line:2 Message: Uncaught Error: Syntax error, unrecognized expression: #menuform\:mainMenu_acc_root_8576864d-8f4b-48a7-a698-132de29219d4|0_0 URL: http://localhost:8080/matrix/javax.face ... 8&e=10.0.5 Colno: 31703 Errorobject: Error: Syntax error, unrecognized expression: #menuform\:mainMenu_acc_root_8576864d-8f4b-48a7-a698-132de29219d4|0_0

Seems the same Problem with the '|'-Character as some Users have with Harmony:
viewtopic.php?f=82&t=75914

Re: Menu-Issue after update to 11.0.8

Posted: 03 Oct 2022, 10:44
by mert.sincan
Interesting! Could you please make the following change in layout.js?

Code: Select all

restoreMenuState: function() {
   ...
         var menuitem = $("#" + this.expandedMenuitems[i].replace(/:/g, "\\:").replace(/\|/g,"\\|"));    // instead of $("#" + this.expandedMenuitems[i].replace(/:/g, "\\:"))
   ...
 }