You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by pn...@apache.org on 2011/03/19 22:53:34 UTC

[Lucene.Net] svn commit: r1083305 - /incubator/lucene.net/site/trunk/templates/landing.html

Author: pnasser
Date: Sat Mar 19 21:53:34 2011
New Revision: 1083305

URL: http://svn.apache.org/viewvc?rev=1083305&view=rev
Log:
fixing landing page links

Modified:
    incubator/lucene.net/site/trunk/templates/landing.html

Modified: incubator/lucene.net/site/trunk/templates/landing.html
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/templates/landing.html?rev=1083305&r1=1083304&r2=1083305&view=diff
==============================================================================
--- incubator/lucene.net/site/trunk/templates/landing.html (original)
+++ incubator/lucene.net/site/trunk/templates/landing.html Sat Mar 19 21:53:34 2011
@@ -49,10 +49,10 @@
 
 				<div class="column" style="width:325px;height:200px">
 					<ul class="first calltoaction">
-						<li><a href="#panel1">Grab the Code</a></li>
-						<li><a href="#panel2">Join the Conversation</a></li>
-						<li><a href="#panel3">Check out our Roadmap</a></li>
-						<li><a href="#panel4">Frequently Asked Questions</a></li>
+						<li><a data="#panel1" href="code.html">Grab the Code</a></li>
+						<li><a data="#panel2" href="conversation.html">Join the Conversation</a></li>
+						<li><a data="#panel3" href="roadmap.html" >Check out our Roadmap</a></li>
+						<li><a data="#panel4" href="faq.html">Frequently Asked Questions</a></li>
 					</ul>
 				</div>
 				
@@ -155,7 +155,7 @@
 				$('.calltoactionpanel').hide();
 				
 				//show panel
-				var panel = $(this).attr("href");
+				var panel = $(this).attr("data");
 				$(panel).show();
 			});