Hi
Recently I found out that First tab of a course (in GURU) not open in mobile (accordion mode). So checked line 23 of:
components\com_guru\views\guruprograms\tmpl\tabs.php
document.onreadystatechange = function(){
initPhoneTabs();
}
That cause initPhoneTabs runs twice!
Changed it to :
document.ready = function(){
initPhoneTabs();
}
and now seems that problem fixed.
I just wanted to share it. with best