Skip to content
This repository was archived by the owner on Jun 28, 2021. It is now read-only.
Prev Previous commit
Next Next commit
refactor and works
  • Loading branch information
mmahalwy committed Jun 26, 2016
commit d2988a595ad73bafb0fb2841976ae6d3dfdfd2be
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NODE_ENV=development
PORT=8000
API_URL=http://quran.com:3000
API_URL=http://localhost:3000
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ill change it back!

SEGMENTS_KEY=
SENTRY_KEY_CLIENT=
SENTRY_KEY_SERVER=
2 changes: 1 addition & 1 deletion src/components/Audioplayer/Track/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default class Track extends Component {
const { progress } = this.props;

return (
<div className={style.track} onClick={this.onTrackerMove}>
<div ref="container" className={style.track} onClick={this.handleClick}>
<div className={style.progress} style={{width: `${progress}%`}} />
</div>
);
Expand Down
Loading