ucservice 1.6.3 → 1.6.4
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/dist/ucservice.common.js +4 -4
- package/dist/ucservice.common.js.gz +0 -0
- package/dist/ucservice.common.js.map +1 -1
- package/dist/ucservice.umd.js +4 -4
- package/dist/ucservice.umd.js.gz +0 -0
- package/dist/ucservice.umd.js.map +1 -1
- package/dist/ucservice.umd.min.js +1 -1
- package/dist/ucservice.umd.min.js.gz +0 -0
- package/dist/ucservice.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scooper.video.js +3 -3
package/dist/ucservice.common.js
CHANGED
|
@@ -13195,7 +13195,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
13195
13195
|
|
|
13196
13196
|
if (document.querySelector(_self.selector)) {
|
|
13197
13197
|
let videoLi = {};
|
|
13198
|
-
Array.prototype.slice.call(document.querySelector(
|
|
13198
|
+
Array.prototype.slice.call(document.querySelector(_self.selector).querySelectorAll('li'), 0).forEach(liItem => {
|
|
13199
13199
|
videoLi[$(liItem).attr('index')] = liItem;
|
|
13200
13200
|
});
|
|
13201
13201
|
|
|
@@ -13232,7 +13232,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
13232
13232
|
|
|
13233
13233
|
if (document.querySelector(_self.selector)) {
|
|
13234
13234
|
let videoLi = {};
|
|
13235
|
-
Array.prototype.slice.call(document.querySelector(
|
|
13235
|
+
Array.prototype.slice.call(document.querySelector(_self.selector).querySelectorAll('li'), 0).forEach(liItem => {
|
|
13236
13236
|
videoLi[$(liItem).attr('index')] = liItem;
|
|
13237
13237
|
});
|
|
13238
13238
|
|
|
@@ -15521,8 +15521,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
15521
15521
|
|
|
15522
15522
|
self.tagBox.bind("canplay play playing", function () {
|
|
15523
15523
|
if (self.video) {
|
|
15524
|
-
if (self.tagBox.is(':visible')) return;
|
|
15525
|
-
|
|
15524
|
+
// if (self.tagBox.is(':visible')) return;
|
|
15525
|
+
// 清除播放监测定时任务,清除内容
|
|
15526
15526
|
self.playSucTimeOutIndex > 0 && clearTimeout(self.playSucTimeOutIndex);
|
|
15527
15527
|
self.tagBox.parent().find(".video-tip").remove();
|
|
15528
15528
|
console.log('分屏=' + (self.index + 1) + ', ' + self.video + ' 播放成功');
|
|
Binary file
|