Skip to content

Commit

Permalink
link fixes + a fix to issue 71
Browse files Browse the repository at this point in the history
  • Loading branch information
tipiirai committed Jun 7, 2010
1 parent 7b6a2de commit 85809f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion documentation/basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ <h2><em>Including</em> the Tools</h2>
</p>

<pii:code lang="html">
${cdn}/${v.jqt}/jquery.tools.min.js
http://cdn.jquerytools.org/${v.jqt}/jquery.tools.min.js
</pii:code>

<p>
Expand Down
5 changes: 3 additions & 2 deletions download/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,10 @@ <h2 class="first">Quick start</h2>
</p>

<ol>
<c:forEach items="${metadata.tools}" var="tool" end="12" varStatus="i">
<li><a href="http://jquery.com" class="external">jQuery ${v.jquery}</a></li>
<c:forEach items="${metadata.tools}" var="tool" begin="1" end="12" varStatus="i">
<c:if test="${empty tool.plugin && empty tool.cat}">
<li><a href="${jqt}/${tool.www}" ${i.index == 0 ? 'class="external"' : ''}>${tool.title}</a></li>
<li><a href="${jqt}/${tool.www}">${tool.title}</a></li>
</c:if>
</c:forEach>
</ol>
Expand Down
4 changes: 2 additions & 2 deletions overlay/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ <h2>Demos</h2>
</p>

<ul>
<c:forEach items="${f:getDemo(context.toolDemos, 'overlay/index.html').category.demos}" var="demo">
<li> <a href="../demos/${demo.path}">${demo.title}</a> </li>
<c:forEach items="${f:getDemo(context.toolDemos2, 'overlay/index.html').category.demos}" var="demo">
<li> <a href="${jqt}/demos/${demo.path}">${demo.title}</a> </li>
</c:forEach>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion tabs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h3>Quick Start</h2>

<pii:code lang="html">
<!-- the tabs -->
<ul>
<ul class="tabs">
<li><a href="#">Tab 1</a></li>
<li><a href="#">Tab 2</a></li>
<li><a href="#">Tab 3</a></li>
Expand Down

0 comments on commit 85809f5

Please sign in to comment.