
Does JW7 have a working plugin implementation?
Hello,
I can't seem to find any documentation on this for JW7. The old plugin demos don't work either.
Here's a simple example to illustrate the problem
```
var Plugin = function(player, config, div) {
function setup(evt) {
console.log('setup called');
}
player.onReady(setup);
this.resize = function(width, height) {
console.log('resize called', width, height);
};
};
var minPlayerVersion = '7.0';
var pluginName = 'helloworld';
jwplayer().registerPlugin(pluginName, minPlayerVersion, Plugin);
console.log(jwplayer().plugins.helloworld);
// undefined
```
None of the console statements gets logged, and the inspection of `jwplayer().plugins.helloworld` returns undefined. Any thoughts?
Thank you