sense-react-timeline-editor 1.0.19 → 1.0.20
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/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -721,7 +721,7 @@ var TimelineEngine = /*#__PURE__*/function (_Emitter) {
|
|
|
721
721
|
while (this._actionSortIds[this._next]) {
|
|
722
722
|
var actionId = this._actionSortIds[this._next];
|
|
723
723
|
var action = this._actionMap[actionId];
|
|
724
|
-
if (!action.disable) {
|
|
724
|
+
if (!action.disable && !action.is_disabled) {
|
|
725
725
|
// 判断动作开始时间是否到达
|
|
726
726
|
if (action.start > time) break;
|
|
727
727
|
// 动作可以执行开始
|
package/dist/index.js
CHANGED
|
@@ -730,7 +730,7 @@ var TimelineEngine = /*#__PURE__*/function (_Emitter) {
|
|
|
730
730
|
while (this._actionSortIds[this._next]) {
|
|
731
731
|
var actionId = this._actionSortIds[this._next];
|
|
732
732
|
var action = this._actionMap[actionId];
|
|
733
|
-
if (!action.disable) {
|
|
733
|
+
if (!action.disable && !action.is_disabled) {
|
|
734
734
|
// 判断动作开始时间是否到达
|
|
735
735
|
if (action.start > time) break;
|
|
736
736
|
// 动作可以执行开始
|