| branch | new-model |
| changeset 917 | eb8677d3a663 |
| parent 916 | ec6849bbbdcc |
| child 919 | 972099304059 |
--- a/src/js/serializers/ldt.js Tue Jun 12 19:44:20 2012 +0200 +++ b/src/js/serializers/ldt.js Wed Jun 20 14:45:30 2012 +0200 @@ -25,6 +25,10 @@ _res.title = _data.meta["dc:title"]; _res.description = _data.meta["dc:description"]; _res.setDuration(_data.meta["dc:duration"]); + _res.url = _data.meta.url; + if (typeof _data.meta.img !== "undefined" && _data.meta.img.src !== "undefined") { + _res.thumbnail = _data.meta.img.src; + } return _res; }, serializer : function(_data, _source) {