ucservice 1.4.2 → 1.4.3

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.
@@ -14097,7 +14097,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
14097
14097
  videoFlagObj.find('button[name=rotateVideo]').click(function () {
14098
14098
  let rotateIndex = Number($(this).attr("rotate-index"));
14099
14099
  rotateIndex++;
14100
- $(this).attr("rotate-index", rotateIndex % 4);
14100
+ rotateIndex %= 4;
14101
+ $(this).attr("rotate-index", rotateIndex);
14101
14102
  let li = $(this).parent().parent()[0];
14102
14103
  me.videoRotateSize(li, rotateIndex);
14103
14104
  }); //接收音频事件
Binary file