zwplayer-vue2x 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sources/index.js +5 -2
- package/lib/demo.html +0 -1
- package/lib/zwplayervue2.common.js +0 -752
- package/lib/zwplayervue2.umd.js +0 -763
- package/lib/zwplayervue2.umd.min.js +0 -2
package/package.json
CHANGED
package/sources/index.js
CHANGED
|
@@ -19,8 +19,10 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
19
19
|
|
|
20
20
|
const zwplayer_js_def = 'zwplayer/zwplayer.js?v=3.6';
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
const Player = function(param) {
|
|
23
|
+
console.log('Player param');
|
|
24
|
+
};
|
|
25
|
+
/*
|
|
24
26
|
if (typeof window.ZWPlayer === 'undefined') {
|
|
25
27
|
const loadTask = new Promise(function(resolve, reject) {
|
|
26
28
|
zwplayer_loadjs('zwplayer-core', zwplayer_js_def, function(jsid) {
|
|
@@ -43,6 +45,7 @@ if (typeof window.ZWPlayer === 'undefined') {
|
|
|
43
45
|
else {
|
|
44
46
|
Player = window.ZWPlayer;
|
|
45
47
|
}
|
|
48
|
+
*/
|
|
46
49
|
|
|
47
50
|
export {
|
|
48
51
|
zwplayer,
|
package/lib/demo.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!doctype html><meta charset="utf-8"><title>zwplayervue2 demo</title><script src="./zwplayervue2.umd.js"></script><link rel="stylesheet" href="./zwplayervue2.css"><script>console.log(zwplayervue2)</script>
|