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