diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-08-03 12:21:57 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-08-03 12:21:57 (GMT) |
commit | ef124948f9fa3cacadc9cea232511ab3cef77e24 (patch) | |
tree | 997fa3d174ecd82f350008206e7551e382073d96 /www | |
parent | bd44198689bdfe7b92a71cd8a5e6a4a2f9676911 (diff) |
print Pool shortname at the beginning @ selector
Diffstat (limited to 'www')
-rw-r--r-- | www/js/musicpools.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/musicpools.js b/www/js/musicpools.js index c9083e8..383cf9e 100644 --- a/www/js/musicpools.js +++ b/www/js/musicpools.js @@ -108,7 +108,7 @@ Rdxport.MusicpoolsView.prototype.updateSelector = function() { if(atitle > btitle) return 1; return -1; }).each(function(index, musicpool) { - var name = '<strong>' + musicpool.title + '</strong> (' + musicpool.clock + ')'; + var name = musicpool.clock + ' | <strong>' + musicpool.title + '</strong>'; var link = $('<a>').attr('href', '#').html(name).click(function() { self.setCurrentPoolId(musicpool.clock); self.getCurrentPoolView().model.fetchCarts(); |