Player script indentation fix

This commit is contained in:
Gregory Eremin 2011-09-16 14:57:16 +04:00
parent e94fae6099
commit 52df1f69c4
2 changed files with 204 additions and 205 deletions

View File

@ -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

View File

@ -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;
}