@desynova-digital/player 4.0.99 → 4.0.100
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/components/Shortcut.js +6 -2
- package/package.json +1 -1
package/components/Shortcut.js
CHANGED
|
@@ -836,10 +836,14 @@ var Shortcut = exports["default"] = /*#__PURE__*/function (_Component) {
|
|
|
836
836
|
playbackRate = 4;
|
|
837
837
|
} else if (playbackRate >= 1.5) {
|
|
838
838
|
playbackRate = 2;
|
|
839
|
-
} else if (playbackRate >= 1) {
|
|
839
|
+
} else if (playbackRate >= 1.25) {
|
|
840
840
|
playbackRate = 1.5;
|
|
841
|
-
} else if (playbackRate >=
|
|
841
|
+
} else if (playbackRate >= 1.) {
|
|
842
|
+
playbackRate = 1.25;
|
|
843
|
+
} else if (playbackRate >= 0.75) {
|
|
842
844
|
playbackRate = 1.0;
|
|
845
|
+
} else if (playbackRate >= 0.5) {
|
|
846
|
+
playbackRate = 0.75;
|
|
843
847
|
}
|
|
844
848
|
/*
|
|
845
849
|
* else if (playbackRate >= 1.25) {
|