diff --git a/js/providers/allmusic.js b/js/providers/allmusic.js index 84de584..f26380d 100644 --- a/js/providers/allmusic.js +++ b/js/providers/allmusic.js @@ -11,8 +11,8 @@ SP.Providers.AllMusic = function() { if (albumArtist && albumTitle) { callbackFound(albumTitle + " - " + albumArtist); SP.Search.searchAlbum(albumTitle + " - " + albumArtist, function(href) { - $('') - .prependTo('#disco-browser'); + $('') + .prependTo('.content'); }, function() { clallbackNotFound(); }); @@ -23,8 +23,8 @@ SP.Providers.AllMusic = function() { if (songArtist && songTitle) { callbackFound(songTitle + " - " + songArtist); SP.Search.searchAlbum(songTitle + " - " + songArtist, function(href) { - $('') - .prependTo('#main'); + $('') + .prependTo('.content'); }, function() { clallbackNotFound(); }); @@ -38,8 +38,8 @@ SP.Providers.AllMusic = function() { }).done(function(data) { if (data.artist.albums.length > 0) { data.artist.albums.slice(0, 1).forEach(function(a) { - $('') - .prependTo('.details'); + $('') + .prependTo('.content'); }); } else { clallbackNotFound(); diff --git a/manifest.json b/manifest.json index 817293e..6b1f873 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "Extendify", - "version": "0.1.1", + "version": "0.1.2", "manifest_version": 2, "description": "It appends a Spotify Play Button to Twitter, Wikipedia, Google search results and many more!", "permissions": ["tabs"],