Skip to content

Commit

Permalink
[5.4.6] Fix audio preload
Browse files Browse the repository at this point in the history
  • Loading branch information
kirainmoe committed Oct 1, 2017
1 parent 7d79b0e commit feb445a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/assets/muse-player-preact.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/assets/muse-player-react-lite.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/assets/muse-player.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "muse-player",
"version": "5.4.5",
"version": "5.4.6",
"description": "Just a simple and dilligent HTML5 Audio Player written in React.",
"main": "dist/assets/muse-player.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/config/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

// Settings configured here will be merged into the final config object.
export default {
MUSE_VERSION: '5.4.5'
MUSE_VERSION: '5.4.6'
}
2 changes: 1 addition & 1 deletion src/containers/ControllerContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default class ControlContainer extends Component {
return (
<div className={'muse-controller'} onClick={this.onControllerClick}>
<audio
preload={'no'}
preload={'none'}
ref={ref => (this.audio = ref)}
src={current.src}
onError={this.onAudioError}
Expand Down

0 comments on commit feb445a

Please sign in to comment.