1

It would be nice if the "Working on ..." would auto-update. Sometimes I have multiple windows open and I louse what case I'm working on because only the window that I set what case I'm working on gets updated. The others do get updated if the page is refreshed, but it would be nice if they would auto-update. I'm not sure, but this might be capable through a bugmonkey script.

flag
1 
I agree... Other apps do it, like Trello, so it's time for FB to get some of the server-push goodness. – cdeszaq Nov 1 at 17:00

2 Answers

1

I am using Case Tracker for handling my "Working on". It is always visible and up-to-date.

link|flag
1

You can do this with the following BugMonkey script:

name:          Refresh "Working On"
description:   Refreshes "Working On" every ten seconds.
author:        Nick Orlando
version:       1.0.0.0

js:

var refresh = setInterval(function() { if ($('#Working_On').length) refreshWorkingOn(); }, 10000);
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.