aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/js/models/Song.js
blob: 56af491619480e2593f1044c0f5591b09da3a31a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
var Song = ReferenceCountedModel.extend({
	defaults: {
		"title": "Untitled Track",
		"artist": "",
		"album": "",
		"track": "",
		"id": "{emptysong}",
		"mimetype": "audio/mpeg",
		"length": 0,
		"playing": false,
		"inBasket": false
	}
});