Skip to content

Commit

Permalink
fix path to eye-icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jhgoebbert authored Jun 7, 2023
1 parent cd0de67 commit da3f0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html5/connect.html
Original file line number Diff line number Diff line change
Expand Up @@ -923,11 +923,11 @@ <h4 class="panel-title">Advanced options</h4>
$("#toggle-password").on("click", function () {
$("#toggle-password").attr(
"src",
"../icons/" + toggle_reveal("password")
"./icons/" + toggle_reveal("password")
);
});
$("#toggle-key").on("click", function () {
$("#toggle-key").attr("src", "../icons/" + toggle_reveal("key"));
$("#toggle-key").attr("src", "./icons/" + toggle_reveal("key"));
});

if (!has_session_storage) {
Expand Down

0 comments on commit da3f0d4

Please sign in to comment.