Ticket #1097 (closed bug: fixed)

Opened 3 years ago

Last modified 3 years ago

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

comment:1 Changed 3 years ago by pablo

  • Owner changed from pablo to zach

comment:2 Changed 3 years ago by zach

  • Status changed from new to closed
  • Resolution set to fixed

Fixed in 1426

Note: See TracTickets for help on using tickets.