Feature Request: Auto-update "Working on ..." - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-26T00:33:38Zhttp://fogbugz.stackexchange.com/feeds/question/10905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/10905/feature-request-auto-update-working-onFeature Request: Auto-update "Working on ..."Nick2012-10-25T15:18:06Z2013-04-16T18:12:25Z
<p>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.</p>
http://fogbugz.stackexchange.com/questions/10905/feature-request-auto-update-working-on/10907#10907Answer by Uwe Raabe for Feature Request: Auto-update "Working on ..."Uwe Raabe2012-10-26T07:51:34Z2012-10-26T07:51:34Z<p>I am using <a href="http://code.google.com/p/visionmap/wiki/CaseTracker" rel="nofollow">Case Tracker</a> for handling my "Working on". It is always visible and up-to-date.</p>
http://fogbugz.stackexchange.com/questions/10905/feature-request-auto-update-working-on/11251#11251Answer by Nick for Feature Request: Auto-update "Working on ..."Nick2013-04-15T20:53:05Z2013-04-15T20:53:05Z<p>You can do this with the following <a href="http://www.fogcreek.com/fogbugz/Plugins/plugin.aspx?ixPlugin=16" rel="nofollow">BugMonkey</a> script:</p>
<pre><code>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);
</code></pre>