We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8ea47 commit 4ea0ee2Copy full SHA for 4ea0ee2
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-video-player",
3
- "version": "3.1.1",
+ "version": "3.1.2",
4
"description": "Video Player component for Vue2",
5
"main": "index.js",
6
"scripts": {
player.vue
@@ -100,7 +100,9 @@
100
// console.log(videoOptions)
101
102
// avoid error "VIDEOJS: ERROR: Unable to find plugin: __ob__"
103
- delete videoOptions.plugins.__ob__
+ if (videoOptions.plugins) {
104
+ delete videoOptions.plugins.__ob__
105
+ }
106
this.player = videojs(this.$el.children[0], videoOptions, function() {
107
108
// player readied
0 commit comments