Ticket #1097 (closed bug: fixed)
Config not passed to non-hosted plugin swfs
| Reported by: | pablo | Owned by: | zach |
|---|---|---|---|
| Priority: | Milestone: | Player 5.4 | |
| Component: | embedding | Keywords: | |
| Cc: | Forum thread: |
Description
The following example will not pass the file property to the captions plugin
<div id="player"></div>
<script type="text/javascript">
jwplayer("player").setup({
flashplayer: "/trunk/fl5/player.swf",
file: '/testing/files/corrie.flv',
plugins: {
'/plugins/captions/v5/captions.swf': {
'file': '/testing/files/corrie.xml'
}
}
});
</script>
Temporary workaround:
<div id="player"></div>
<script type="text/javascript">
jwplayer("player").setup({
flashplayer: "/trunk/fl5/player.swf",
file: '/testing/files/corrie.flv',
plugins: {
'/plugins/captions/v5/captions.swf': {},
},
'captions.file': '/testing/files/corrie.xml'
});
</script>
Change History
Note: See
TracTickets for help on using
tickets.
