-
-
September 3, 2020 at 8:52 pm #6411Alicensing@ncmcs.orgParticipant
Hello,
I installed the theme today in our help desk and the desktop version works great. The mobile version shows tickets assigned to me but any links when expanding the hamburger icon do not do anything. If I went to the mobile version on ios and force push on the link it will open in a new tab with the content requested but it will not load in place by just simply tapping on the link.
anyone having this issue?
Thanks!
EDIT: I tried the mobile demo from this website also, on the staff demo the links on the hamburger menu also do not work.
-
September 4, 2020 at 12:17 pm #6429Alicensing@ncmcs.orgParticipant
is there a workaround for this issue? I had to revert to the old interface when we scheduled to launch the changes because the selling point for our techs was the mobile interface which is not currently working. If anyone knows if there is a way please let me know I was thinking of maybe giving it another go this weekend.
Thanks
-
September 5, 2020 at 11:01 am #6438stevlandKeymaster
Okay, I have a fix for this.
You have 3 options to fix this on your end.- You can install the hotfix release osTicket-1.14.3-Awesome-101a.zip
- You can wait for a few days and upgrade to the next release (osTicket-1.14.3-Awesome-102) which should be ready in a few days
- Or you can manually apply the simple fix below:
Open /osta/inc/staff-foot.html
Change Line 36 from:
$("#sidr-right").on("click",function(e) {
e.preventDefault();
});
To:
$("#sidr-right").on("click",function(e) {
if ( $(e.target).hasClass("osta-task") ) e.preventDefault();
else e.stopPropagation();
});
-
September 7, 2020 at 2:29 pm #6573Alicensing@ncmcs.orgParticipant
Thank you so much for such a prompt response to this issue. I really appreciate it!
-
You must be logged in to reply to this topic.