Skip to content

Commit

Permalink
Add changes to iramanusantara.ts from #3611 (#3623)
Browse files Browse the repository at this point in the history
  • Loading branch information
drepram committed Apr 13, 2023
1 parent adfd89b commit 77b0df0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/connectors/iramanusantara.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export {};

Connector.playerSelector = '#player';
Connector.playerSelector = '#seek';

Connector.artistSelector = '#pl-info-text > h4';
Connector.artistSelector = '#player-music > div > span > a:nth-child(1)';

Connector.trackSelector = '#pl-info-text > h3';
Connector.trackSelector = '#player-music > div > span:nth-child(1)';

// Album title is only available when track is played through the album page
Connector.albumSelector = '.ad-info-text1 > h1';
Connector.albumSelector = 'h1:first-of-type';

Connector.playButtonSelector = '#pl-ctrl-play';
Connector.playButtonSelector = 'li > div > div > button:nth-child(1)';

Connector.trackArtSelector = '.player-img > img';
Connector.trackArtSelector = '#player-music > span > img';

0 comments on commit 77b0df0

Please sign in to comment.