Skip to content

Commit

Permalink
Merge pull request #690 from dhruvmisra/fix/passwordTut
Browse files Browse the repository at this point in the history
[Issue #689 fix] Fixed the element selection in password tutorial
  • Loading branch information
llaske authored Mar 12, 2020
2 parents 6b3264d + 58957fb commit 751f156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/firstscreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ enyo.kind({
tutorial.setElement("serverbox", this.$.server.getAttribute("id"));
tutorial.setElement("qrcode", this.$.qrbutton.getAttribute("id"));
tutorial.setElement("namebox", this.$.name.getAttribute("id"));
tutorial.setElement("passbox", this.$.password.getAttribute("id"));
tutorial.setElement("passbox", this.$.password.children[0].id);
tutorial.setElement("previous", this.$.previous.getAttribute("id"));
tutorial.setElement("next", this.$.next.getAttribute("id"));
tutorial.setElement("owner", this.$.owner.getAttribute("id"));
Expand Down

0 comments on commit 751f156

Please sign in to comment.