Skip to content

Commit

Permalink
[docs] Fixed examples links and style
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Sep 10, 2019
1 parent 1fa000f commit 878bdc4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
$.get("https://api.github.com/repos/toorshia/justgage/contents/docs/examples", function (data, status) {
let htmlString = '';
for (let file of data) {
htmlString += `<li><a href="${file.path}">${file.name}</a></li>`;
htmlString += `<li><a href="${file.path.substr(5)}">${file.name}</a></li>`;
}
htmlString += '';
$('#examples').html(htmlString);
Expand Down Expand Up @@ -487,12 +487,11 @@ <h1>What can it do?</h1>
</li>
</ul>
</div>
<h1>More examples:</h3>
<ul class="highlights clear" id="examples"></ul>
</div>

<h3>More examples:</h3>
<ul id="examples">

</ul>

</div>

<!-- RELEASE NOTES -->
Expand Down

0 comments on commit 878bdc4

Please sign in to comment.