
Issue with IE 11
I'm playing a video using jwplayer. The video works fine in chrome but when I load the video in IE 11 it fails.
Following are the javascript errors shown in the console.
SEC7111: HTTPS security is compromised by http://resources.salesitv.com/20+Free+Trial/Thumbnail/the_sales_process_thumbnail.png
message"Unable to get property '0' of undefined or null reference"
type"jwplayerError"
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable.
File: proximanovasoft-bold-webfont.ttf
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable.
File: proximanovasoft-regular-webfont.ttf
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable.
File: proximanovasoft-semibold-webfont.ttf
CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable.
File: proximanovasoft-medium-webfont.ttf
My code is :
<script>
jwplayer("myPlayer").setup({
playlist: [{
image: "{!JSEncode(NullValue(selectedVideo.Preview__c, NullValue(selectedVideo.Image__c, module.Image__c)))}",
sources: [
{
file: "{!JSENCODE(selectedVideoStream)}"
}
,
{
file: "{!JSENCODE(selectedVideoDownload)}"
}
]
}],
aspectratio: "16:9",
width: "100%",
autostart: true
});
</script>
This is a salesforce visualforce code. Can you please let me know how to solve this IE 11 problem. Thanks.