From ef124948f9fa3cacadc9cea232511ab3cef77e24 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 3 Aug 2016 14:21:57 +0200 Subject: print Pool shortname at the beginning @ selector 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 = '' + musicpool.title + ' (' + musicpool.clock + ')'; + var name = musicpool.clock + ' | ' + musicpool.title + ''; var link = $('').attr('href', '#').html(name).click(function() { self.setCurrentPoolId(musicpool.clock); self.getCurrentPoolView().model.fetchCarts(); -- cgit v0.10.2