@Kerek, Well that was a waste of time.... It just dawned on me why that is like that... If the url is "
https://www.mturk.com/mturk/submit" then there is no where to get the panda from....
There is something else though, there is no header when you accept your first hit, so the watcher button can't get attached anywhere, so this is the fix for that.
Lines 651-665 become this..
Code:
if (pageType.HIT) {
if ($(".message.success h6").length)
location = $(".message.success h6");
else if ($("#javascriptDependentFunctionality").length)
location = $("#javascriptDependentFunctionality");
else if ($("body > form:nth-child(7) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1)").length)
location = $("body > form:nth-child(7) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1)");
else if (!$("span#alertboxHeader:visible").length)
location = $("img[src='/media/submit_hit_disabled.gif']").eq(0).parent().parent();
else
location = $('span#alertboxHeader');
} else if (pageType.REQUESTER || pageType.SEARCH) {
if ($(".title_orange_text_bold").length)
location = $(".title_orange_text_bold");
else
location = $(".error_title");
}
Are you updated with the most recent TM? You seem to be the only one having this issue and this was the issue that was fixed earlier this week.