diff options
author | Peter Grassberger <petertheone@gmail.com> | 2016-09-01 12:43:48 (GMT) |
---|---|---|
committer | Peter Grassberger <petertheone@gmail.com> | 2016-09-01 12:43:48 (GMT) |
commit | 2bbb6da294e8a253906eb75c84b15afa6aef444e (patch) | |
tree | f4beee79b258fd145df2473768efb7348badecc9 /www/js | |
parent | 389fc21b6028d1c2bab510d66ed74f6bfcc105f5 (diff) | |
parent | ef124948f9fa3cacadc9cea232511ab3cef77e24 (diff) |
Merge branch 'master' of ssh://git@git.helsinki.at:2342/rhwebimport.git
Diffstat (limited to 'www/js')
-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(); |