summaryrefslogtreecommitdiff
path: root/static/sound.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/sound.js')
-rw-r--r--static/sound.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/sound.js b/static/sound.js
index c4f2dbf..07366ff 100644
--- a/static/sound.js
+++ b/static/sound.js
@@ -1,7 +1,7 @@
function playsound(model) {
playlist.hintnext();
var item = model.toJSON();
- var id = item.track_id;
+ var id = item.id;
var cid = model.cid;
var el = $('#cid-' + cid);
el.addClass('loading');
@@ -55,7 +55,7 @@ function playsound(model) {
function sound_hint(model) {
$('#cid-' + model.cid).addClass('loading');
- $.get('/json/hint/' + model.attributes.track_id, function(data) {
+ $.get('/json/hint/' + model.id, function(data) {
$('#cid-' + model.cid).removeClass('nocache').removeClass('loading');
});
}