diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-09-21 03:08:37 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-09-21 03:08:37 (GMT) |
commit | 68c56aa6633257c9ca9af0cb25df2a9672662b32 (patch) | |
tree | a841df32774e4dcffb5bd0a9d0fe3c718cfa683e /js | |
parent | f4059249c81e3c88b750aad69e834d1ad8e96b41 (diff) |
refactored show log specification
Diffstat (limited to 'js')
-rw-r--r-- | js/shows.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/shows.js b/js/shows.js index 1bf7c3b..03af34f 100644 --- a/js/shows.js +++ b/js/shows.js @@ -127,18 +127,18 @@ function shows_updateList(data, status, req) { type = $(this).find('type').text(); if(type == 'show') { var show = { - id: $(this).find('showid').text(), + id: $(this).find('show-id').text(), title: $(this).find('show-title').text(), dow: $(this).find('show-dayofweek').text(), rhythm: $(this).find('show-rhythm').text(), starttime: $(this).find('show-starttime').text(), length: $(this).find('show-length').text(), + log: $(this).find('show-log').text(), group: { name: $(this).find('group').text(), lowcart: $(this).find('group-low-cart').text(), highcart: $(this).find('group-high-cart').text(), }, - log: $(this).find('log').text(), normlevel: $(this).find('normalization-level').text(), trimlevel: $(this).find('autotrim-level').text(), } |