Skip to content

Commit

Permalink
Version 2.5.15 and buildout
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Feb 22, 2016
1 parent bc4e0cc commit 22d5089
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mopidy_spotmop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from services.auth import auth
from mopidy import config, ext

__version__ = '2.5.14'
__version__ = '2.5.15'
__ext_name__ = 'spotmop'
__verbosemode__ = False

Expand Down
6 changes: 3 additions & 3 deletions mopidy_spotmop/static/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -31501,10 +31501,10 @@ angular.module('spotmop.common.tracklist', [
});


// collapse menus and deselect tracks when we click outside of a tracklist
// collapse menus and deselect tracks when we click outside of a tracklist and not on a contextmenu
$(document).on('mouseup', 'body', function( event ){
if( $(event.target).closest('.tracklist').length <= 0 ){
if( $(event.target).closest('.tracklist').length <= 0 && $(event.target).closest('contextmenu').length <= 0 ){
// if we've just dropped some tracks somewhere, don't unselect them
// NOTE: this doesn't apply when dragging in the queue, as changing the queue completely refreshes it and flushes all selected states
if( !$('body').hasClass('dragging') ){
Expand Down
4 changes: 2 additions & 2 deletions mopidy_spotmop/static/app.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions mopidy_spotmop/static/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1500,6 +1500,10 @@ body.dragging .tracklist .track.selected {
opacity: 0;
}

.artist-intro .image-container canvas {
background-color: #444444;
}

.artist-page .title-panel {
position: absolute;
bottom: 0;
Expand Down
2 changes: 1 addition & 1 deletion mopidy_spotmop/static/assets/css/style.min.css

Large diffs are not rendered by default.

0 comments on commit 22d5089

Please sign in to comment.