1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-24 08:42:25 +02:00

@kahwee Fixed sandbox plugin example to work in Video.js 5. closes #2691

This commit is contained in:
KahWee Teng 2015-10-28 16:06:33 -04:00 committed by Gary Katsevman
parent 5f5357d535
commit 6e25aef060
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,8 @@ CHANGELOG
* @misteroneill added a modal dialog ([view](https://github.com/videojs/video.js/pull/2668))
* @misteroneill removed z-index from big play button ([view](https://github.com/videojs/video.js/pull/2639))
* @DaveVoyles updated URL to player API docs ([view](https://github.com/videojs/video.js/pull/2685))
* @ ([view](https://github.com/videojs/video.js/pull/2691))
* @kahwee Fixed sandbox plugin example to work in Video.js 5 ([view](https://github.com/videojs/video.js/pull/2691))
--------------------

View File

@ -41,10 +41,10 @@
};
// register the plugin
vjs.plugin('progressed', progressed);
videojs.plugin('progressed', progressed);
// initialize it
vid1 = vjs('vid1');
vid1 = videojs('vid1');
vid1.progressed();
})();
</script>