@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/lls-audio",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "main": "index.js",
5
5
  "devDependencies": {
6
6
  "@kadira/storybook": "^2.21.0",
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 > endTime) {
201
+ } else if (currentTime >= endTime) {
202
202
  if (!loop) this.pause();
203
203
  return endTime;
204
204
  }
package/player/Play.js CHANGED
@@ -19,7 +19,6 @@ var styles = _noImportant.StyleSheet.create({
19
19
  'height': 16,
20
20
  'width': 16,
21
21
  'display': 'block',
22
- 'margin': '5px auto',
23
22
  'overflow': 'hidden',
24
23
  'position': 'relative'
25
24
  },