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.
@@ -14088,7 +14088,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
14088
14088
  videoFlagObj.find('button[name=rotateVideo]').click(function () {
14089
14089
  let rotateIndex = Number($(this).attr("rotate-index"));
14090
14090
  rotateIndex++;
14091
- $(this).attr("rotate-index", rotateIndex % 4);
14091
+ rotateIndex %= 4;
14092
+ $(this).attr("rotate-index", rotateIndex);
14092
14093
  let li = $(this).parent().parent()[0];
14093
14094
  me.videoRotateSize(li, rotateIndex);
14094
14095
  }); //接收音频事件
Binary file