Skip to content

Commit

Permalink
Reopen sync code dialog when switching desktop <=> mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyBarabash committed Jun 16, 2022
1 parent d9ac299 commit 62f0a04
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,17 @@ Polymer({
},

handleChooseMobile_: function() {
this.codeType = 'qr'
this.codeType = null
window.setTimeout(() => {
this.codeType = 'qr'
}, 0)
},

handleChooseComputer_: function() {
this.codeType = 'words'
this.codeType = null
window.setTimeout(() => {
this.codeType = 'words'
}, 0)
},

handleSyncCodeCopy_: function() {
Expand Down

0 comments on commit 62f0a04

Please sign in to comment.