@lls/lls-audio 0.0.42 → 0.0.43

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/player/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/lls-audio",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "main": "index.js",
5
5
  "devDependencies": {
6
6
  "@kadira/storybook": "^2.21.0",
package/player/index.js CHANGED
@@ -224,12 +224,12 @@ var Player = function (_Component) {
224
224
 
225
225
  /* Play and pause will be called from the outside */
226
226
  value: function play() {
227
- this.ref.audio.play();
227
+ this.refs.audio.play();
228
228
  }
229
229
  }, {
230
230
  key: 'pause',
231
231
  value: function pause() {
232
- this.ref.audio.pause();
232
+ this.refs.audio.pause();
233
233
  }
234
234
  }, {
235
235
  key: 'render',