Skip to content

Commit 36775e8

Browse files
author
unknown
committed
Debug
1 parent 3a2731a commit 36775e8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
Video/Live player for Vue.js(1.x ~ 2.x)
1111
基于 [video.js](https://github.com/videojs/video.js) + [videojs-resolution-switcher](https://github.com/kmoskwiak/videojs-resolution-switcher) + [videojs-contrib-hls](https://github.com/videojs/videojs-contrib-hls) + [videojs-youtube](https://github.com/videojs/videojs-youtube)
1212

13+
> ### V2.4.4
14+
> debug,修复低级bug
15+
1316
> ### V2.4.2
1417
> 优化SPA应用下的销毁方法
1518

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-video-player",
3-
"version": "2.4.3",
3+
"version": "2.4.4",
44
"description": "Video Player component for Vue.js(1.x ~ 2.x)",
55
"main": "index.js",
66
"scripts": {

player.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
'autoplay': options.autoplay !== undefined ? options.autoplay : true,
116116
'preload': options.preload || 'auto',
117117
'poster': options.poster || '',
118-
'wdith': options.wdith || '100%',
118+
'width': options.width || '100%',
119119
'height': options.height || 360,
120120
'fluid': options.fluid || false,
121121
'controlBar': options.controlBar || controlBar,

0 commit comments

Comments
 (0)