1

How can I get it to work again with FB8?

Fog Creek Case FC1952480

flag
We're looking into this right now, Andy. – Ben Kamens Sep 13 2010 at 22:33
Is the problem that you click on the Kanban link next to "Working On" and nothing happens? – Rob Sobers Sep 14 2010 at 13:48

2 Answers

2

This is caused by a bug in the KanBan plugin's javascript. The bug exists in versions 2.0.7.21 and earlier, but is visible depending on certain javascript conditions within the page. The KanBan author knows of the issue and has promised to address it in the next release.

In the meantime, you can use this BugMonkey script to fix the problem:

  1. Enable the BugMonkey plugin
  2. Under 'Admin -> Set Site Javascript and CSS', put this code into the Javascript field:
setTimeout(function() {
    $('#belowBanner>span>a').each(function() {
        if ($(this).text() === 'Kanban') {
            $(this).attr('href', 'default.asp?pg=pgPlugin&sPluginId=kanbanboard@ergonlabs.com');
        }
    });
}, 10);

The KanBan link should now work correctly.

link|flag
FogBugz Licensed users can fix this bug by directly modifying the KanBan plugin's javascript. See fogbugz.stackexchange.com/questions/4158/… – Jude Allred Sep 14 2010 at 17:38
0

What version of the KanBan plugin are you using?

A version of that plugin was released on July 28, 2010 to address compatibility with FogBugz 8.

link|flag
I'm on FogBugz on Demand and I too have the problem. Looks like it's version 2.0.7.21. I actually found that the "Kanban" link beside Working On is broken, but you can successfully access the Kanban board through the extras menu in the upper-right corner. – Jonathan Sep 14 2010 at 0:11
The KanBan release on "July 28, 2010 to address compatibility with FogBugz 8" didn't fix this bug. It's actually not caused by FB 8- rather, it's caused by the presence of any other javascript existing on the page after KanBan's. The bug was always there, it just happened to not manifest because KanBan was conveniently and consistently the last plugin to load (for most people). That probability has decreased, so we now see the bug. – Jude Allred Sep 14 2010 at 17:34

Your Answer

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