Player script indentation fix
This commit is contained in:
parent
e94fae6099
commit
52df1f69c4
@ -199,8 +199,7 @@ $('#empty-playlist').live 'click', ->
|
||||
# Playlist Actions
|
||||
|
||||
$('.playlist li .artist-name, .playlist li .song-title, .playlist li .song-duration, .playlist li .remove').live 'mousemove mouseover mouseout', (e) ->
|
||||
if e.type in ['mouseover', 'mousemove'] and ($(window).width() - e.clientX) < 60 +
|
||||
$(window).width() - $('.playlist').offset().left - $('.playlist').outerWidth()
|
||||
if e.type in ['mouseover', 'mousemove'] and $('.playlist').offset().left + $('.playlist').outerWidth() - e.clientX < 60
|
||||
$(this).parent().find('.song-duration').hide()
|
||||
$(this).parent().find('.remove').show()
|
||||
else
|
||||
|
@ -21,14 +21,14 @@
|
||||
width: 94%;
|
||||
margin: 0 0 18px 3%;
|
||||
height: 5px;
|
||||
background-color: #e0e0e0;
|
||||
background-color: #f0f0f0;
|
||||
.loaded {
|
||||
width: 66%;
|
||||
width: 0;
|
||||
height: 5px;
|
||||
background-color: #d0e0e0;
|
||||
cursor: pointer;
|
||||
.played {
|
||||
width: 66%;
|
||||
width: 0;
|
||||
height: 5px;
|
||||
background-color: #0090AA;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user