Jump to content

javascript typo error in streamext.html file


aht961

Recommended Posts

Under streamext.html you need to change the text inside.

 

Find

 

<script language="JavaScript">

<!--

function switch_to(url) {

Now = new Date();

document.switchimage.src = "?switch=" + url + "&id={ClientID}&" + Now.getTime();

}

</script>

Replace with

 

<script type="text/JavaScript">

<!--

function switch_to(url) {

Now = new Date();

document.switchimage.src = "?switch=" + url + "&id={ClientID}&" + Now.getTime();

}

// -->

</script>

 

The streaming page should now work with iphone browser and you can change channels too (you might need to refresh the page). Hopefully this could be updated on the next release?

 

I refer to the note above. This ("// -->") is still missing before the </script> line in streamext.html file in the newest test version giving an empty window in mobile safari like in iPhone. I have added earlier manually which has corrected the problem. After upgrading I have noticed to have the same error and found out that this typo error still exists in the latest test version. Could it be possible to correct it so others won't have similar problems? Thank you.

Link to comment
  • 2 weeks later...
×
×
  • Create New...