From 7c44d69c0e6daf19f9a5a6ef518bd31604177086 Mon Sep 17 00:00:00 2001 From: Scott Jaderholm Date: Fri, 22 Feb 2013 13:40:11 -0800 Subject: [PATCH] grooveshark.js: update button selectors because website was updated --- modules/page-modes/grooveshark.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/page-modes/grooveshark.js b/modules/page-modes/grooveshark.js index 0a511d8..3effe32 100644 --- a/modules/page-modes/grooveshark.js +++ b/modules/page-modes/grooveshark.js @@ -22,22 +22,22 @@ function grooveshark_click_command (selector, error_message) { interactive("grooveshark-play-or-pause", "Click the Groovshark play/pause button.", - grooveshark_click_command("button#player_play_pause", + grooveshark_click_command("#play-pause", "No play or pause button found")); interactive("grooveshark-mute", "Click the Grooveshark mute button.", - grooveshark_click_command("button#player_volume", + grooveshark_click_command("#volume", "No mute button found")); interactive("grooveshark-previous", "Click the Grooveshark previous-video button.", - grooveshark_click_command("button#player_previous", + grooveshark_click_command("#play-prev", "No previous button found")); interactive("grooveshark-next", "Click the Grooveshark next-video button.", - grooveshark_click_command("button#player_next", + grooveshark_click_command("#play-next", "No next button found")); define_key(grooveshark_keymap, "C-c return", "grooveshark-play-or-pause"); -- 2.11.4.GIT