How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by NOU Sotheany -
Number of replies: 1

Dear Vikas,

I have the same problem could you share your solution?

In reply to NOU Sotheany

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sreenu Vasulu -

For bottom navbar 

In scorm.ts
there was a if condition search for the below line

if (this.scorm.popup) {

---- blah blah

---- blah blah

}

we need to write a else part for the above if condition

else{

     this.tabs.changeVisibility(false);

}

This works for me.
Let me know if it doesn't work.