@lls/lls-audio 0.0.33 → 0.0.34
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/package.json +1 -1
- package/player/Audio.js +1 -1
- package/player/Play.js +0 -1
package/package.json
CHANGED
package/player/Audio.js
CHANGED
|
@@ -198,7 +198,7 @@ var Player = function (_Component) {
|
|
|
198
198
|
this.setCurrentTime(startTime);
|
|
199
199
|
if (!loop) this.pause();
|
|
200
200
|
return startTime;
|
|
201
|
-
} else if (currentTime
|
|
201
|
+
} else if (currentTime >= endTime) {
|
|
202
202
|
if (!loop) this.pause();
|
|
203
203
|
return endTime;
|
|
204
204
|
}
|