mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 03:10:12 +02:00
Added artists/albums/tracks support in tomahawk.js
This commit is contained in:
@@ -137,6 +137,24 @@ var TomahawkResolver = {
|
||||
capabilities: function()
|
||||
{
|
||||
return TomahawkResolverCapability.NullCapability;
|
||||
},
|
||||
artists: function( qid )
|
||||
{
|
||||
return {
|
||||
qid: qid
|
||||
};
|
||||
},
|
||||
albums: function( qid, artist )
|
||||
{
|
||||
return {
|
||||
qid: qid
|
||||
};
|
||||
},
|
||||
tracks: function( qid, artist, album )
|
||||
{
|
||||
return {
|
||||
qid: qid
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user