minor fixes

This commit is contained in:
Egor 2017-12-28 21:11:44 -08:00
parent 8e8ae601e3
commit 2895d4918b
3 changed files with 3 additions and 3 deletions

View file

@ -174,7 +174,7 @@ export default Component.extend({
element: '#playlist',
intro:
'You can add and select music to play from your playlist here. You may listen to local audio files, online audio streams or stream music from SoundCloud.<br><br>' +
'<i><b>TIP</b>: Songs added through Soundcloud will be saved for when you visit this page again.</i>'
'<i><b>TIP</b>: Songs added through Soundcloud or direct URLs will be saved for when you visit this page again.</i>'
},
{
element: $('#playlist md-menu')[0],

View file

@ -561,7 +561,7 @@ export default Component.extend(helperMixin, visualizerMixin, {
if (scrollToSong) {
// this is just a bad workaround to make sure that the track has been rendered to the playlist
next(this, () => {
$('.track' + index).velocity('scroll', { container: $('#play-list-area'), duration: 200 });
$('#play-list-area div div:first').scrollTop(index * 62);
});
}
}

View file

@ -93,7 +93,7 @@ export default Mixin.create({
},
beatDelay: 0,
threshold: 0.3,
threshold: 0.2,
hueRange: [0, 65535],
brightnessRange: [1, 254],
oldThreshold: null,