Skip to content

Commit

Permalink
Fix spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcass77 committed Feb 29, 2016
1 parent 3de53a0 commit 2596946
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions mopidy_musicbox_webclient/static/js/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,13 @@ function popupTracks(e, listuri, trackuri, tlid) {
var popupName = '';
if (divid == 'current') {
$(".addqueue").hide();
popupName = '#popupQueue';
popupName = '#popupQueue';
} else if (divid == 'browse') {
$(".addqueue").show();
popupName = '#popupBrowse';
popupName = '#popupBrowse';
} else {
$(".addqueue").show();
popupName = '#popupTracks';
popupName = '#popupTracks';
}

if (typeof tlid != 'undefined' && tlid !== '') {
Expand Down Expand Up @@ -522,15 +522,13 @@ $(document).ready(function(event) {
});

//navigation temporary, rewrite this!
$('#songinfo').click(
function() {
$('#songinfo').click(function() {
return switchContent('nowPlaying');
});
$('#controlspopupimage').click(
function() {
return switchContent('current');
$('#controlspopupimage').click(function() {
return switchContent('current');
});
$('#navToggleFullscreen').click(function(){
$('#navToggleFullscreen').click(function() {
toggleFullscreen();
});

Expand Down

0 comments on commit 2596946

Please sign in to comment.