1

Sometimes, I have accidental case events, that should actually be removed: they clutter the case window. Is there a way to hide them?

FogBugz cannot remove events. Edit events can be edited, but emails cannot. I already use the Scratch Out plugin, which makes the case a bit less readable/intrusive. But the mail header stays visible and the event still keeps a lot of space.

So... a BugMonkey customization perhaps?

flag

1 Answer

1

Alright then, that wasn't a real question. It's a way to share a solution!

Just use FB_Scratchout along with BugMonkey and this customization:

name:          Minimize scratched-out events
description:   Makes scratched-out events much less intrusive
author:        Michel de Ruiter
version:       1.1.0.0

js:

$("div.Scratchedout").closest('.bugevent')
.attr("title", "Click to collapse/expand")
.addClass("SOcollapsed")
.click(function() {
  $(this).toggleClass("SOcollapsed");
});

css:

.SOcollapsed { height: 16px; cursor: pointer; overflow: hidden; }

Except for Chrome I haven't test this with any browser, so YMMV. Feel free to comment!

I recently found another solution, but collapsing is nicer IMHO.

link|flag

Your Answer

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