Skip to content

Commit

Permalink
Fixed bug in plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
z1pti3 committed Dec 27, 2020
1 parent 0fac902 commit 2dc9745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ <h1 class="nav-header" >Jimi</h1>
for ( plugin in result["result"] ) {
listItem = $("<li>")
address = $("<a>")
address.attr({"onclick": "navigate('"+result["result"][plugin]+"','/plugin/"+result["result"][plugin]+"')"});
address.attr({"onclick": "navigate('"+result["result"][plugin]+"','/plugin/"+result["result"][plugin]+"/')"});
address.attr({"href":"#"})
address.text(result["result"][plugin])
listItem.append(address)
Expand Down

0 comments on commit 2dc9745

Please sign in to comment.