Merge pull request #2063 from ethereum/modalArrows

modal dialog: wrong initialization of boolean
pull/1/head
yann300 6 years ago committed by GitHub
commit 72ac2e817b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/app/ui/modaldialog.js

@ -3,7 +3,7 @@ var css = require('./styles/modaldialog-styles')
module.exports = (title, content, ok, cancel, focusSelector, opts) => {
let agreed = true
let footerIsActive = true
let footerIsActive = false
opts = opts || {}
var container = document.querySelector(`.modal`)
if (!container) {

Loading…
Cancel
Save