Skip to content
This repository has been archived by the owner on Dec 10, 2020. It is now read-only.

Don't double invoke mediasource.open() #97

Merged
merged 1 commit into from
Jun 2, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified dist/video-js.swf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/VideoJS.as
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ package{
}

private function openExternalMSObject(pSrc:*):void{
ExternalInterface.call('videojs.MediaSource.open("' +pSrc+ '", "' +ExternalInterface.objectID+ '")');
ExternalInterface.call('videojs.MediaSource.open', pSrc, ExternalInterface.objectID);
}

private function onSrcCalled(pSrc:* = ""):void{
Expand Down