Skip to content

Commit d6bb768

Browse files
committed
Update README.md, minor bug fix
1 parent 9a9fd64 commit d6bb768

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# CSS (Animated) Music Visualizer
22

3-
A set of visualizers animated entirely using DOM elements and CSS3 Animations and Transforms. **No SVG, Canvas, WebGL, or plug-in**. Everything is a `div`.
3+
Everything is a `div`.
4+
5+
A set of visualizers animated entirely using DOM elements and CSS3 Animations and Transforms. **No SVG, Canvas, WebGL, or plug-in**.
46

57
[**Live Demo**](https://likethemammal.github.io/css-visualizer/iframe.html?id=visualizer--default)
68

@@ -12,13 +14,13 @@ A set of visualizers animated entirely using DOM elements and CSS3 Animations an
1214

1315
Uses the Web Audio API to decode audio data.
1416

15-
[Soundcloud API][https://developers.soundcloud.com/]
16-
[visualizer-micro][https://github.com/likethemammal/visualizer-micro]
17+
* [Soundcloud API](https://developers.soundcloud.com/)
18+
* [visualizer-micro](https://github.com/likethemammal/visualizer-micro)
1719

1820
## Todo:
1921

20-
Chromecast support (doesnt support mp3s)
21-
Other visualizations
22+
* Chromecast support (doesnt support mp3s)
23+
* Other visualizations
2224

2325
## License
2426
Licensed under Apache License 2.0.

src/components/Audio/Audio.component.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class _Audio extends Component {
1414
audio,
1515
} = this.props
1616

17-
audio.addEventListener('onended', onNext)
17+
audio.addEventListener('ended', onNext)
1818

1919
vm.load(audio, onVisualizerLoaded)
2020
}

0 commit comments

Comments
 (0)