Skip Menu |

This queue is for tickets about the TAP-Formatter-HTML CPAN distribution.

Report information
The Basics
Id: 49621
Status: resolved
Priority: 0/
Queue: TAP-Formatter-HTML

People
Owner: steve [...] purkis.ca
Requestors: tim.esselens [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: clicking on test result does nothing
Date: Fri, 11 Sep 2009 13:27:11 +0200
To: bug-TAP-Formatter-HTML [...] rt.cpan.org
From: Tim Esselens <tim.esselens [...] gmail.com>
Nothing happens when I click on the test output. It should have scrolled to the test and highlighted it in yellow. The following patch fixes the issue: --- default_report.js.orig 2009-09-11 13:22:58.693875003 +0200 +++ default_report.js 2009-09-11 13:23:06.416891140 +0200 @@ -32,7 +32,7 @@ // highlight a particular test? var testId = $(this).attr("href"); - if (!testId) { + if (testId) { var $testElem = $detail.find(testId); $testElem.show().scrollTo(1000); var bgColor = $testElem.css("background-color"); -- kind regards, Tim Esselens
I've included this fix to the patch I just submitted to ticket #41457.
Hi Tim, On Fri Sep 11 07:28:07 2009, tim.esselens@gmail.com wrote: Show quoted text
> Nothing happens when I click on the test output. > It should have scrolled to the test and highlighted it in yellow. > > The following patch fixes the issue:
[snip] Thanks for the report & the patch; this will be fixed in the next release. I'm just working on it now, should be on CPAN later this week. -Steve
fixed in 0.09.