Mailing List Archive

svn commit: r329328 - /spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi
Author: jm
Date: Fri Oct 28 16:05:14 2005
New Revision: 329328

URL: http://svn.apache.org/viewcvs?rev=329328&view=rev
Log:
use an anchor to avoid jumping around

Modified:
spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi

Modified: spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi?rev=329328&r1=329327&r2=329328&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi (original)
+++ spamassassin/trunk/masses/rule-qa/automc/ruleqa.cgi Fri Oct 28 16:05:14 2005
@@ -313,7 +313,9 @@
{
my $graph_on = qq{

- <p><a href="}.gen_switch_url("s_g_over_time", "0").qq{">Hide Graph</a></p>
+ <p><a id="over_time_anchor"
+ href="}.gen_switch_url("s_g_over_time", "0").qq{#over_time_anchor"
+ >Hide Graph</a></p>
<img src="}.gen_switch_url("graph", "over_time").qq{"
width=800 height=815 />

@@ -321,7 +323,9 @@

my $graph_off = qq{

- <p><a href="}.gen_switch_url("s_g_over_time", "1").qq{">Show Graph</a></p>
+ <p><a id="over_time_anchor"
+ href="}.gen_switch_url("s_g_over_time", "1").qq{#over_time_anchor"
+ >Show Graph</a></p>

};