removed consoles

pull/1222/head
aniket-engg 4 years ago committed by Aniket
parent 231895c009
commit 8f90b540fb
  1. 2
      apps/remix-ide/src/app/ui/modal-dialog-custom.js

@ -8,7 +8,6 @@ module.exports = {
return modal('Alert', yo`<div>${title}</div>`, null, { label: null }) return modal('Alert', yo`<div>${title}</div>`, null, { label: null })
}, },
prompt: function (title, text, inputValue, ok, cancel, focus) { prompt: function (title, text, inputValue, ok, cancel, focus) {
console.log('inside prompt -> 1', title)
return prompt(title, text, false, inputValue, ok, cancel, focus) return prompt(title, text, false, inputValue, ok, cancel, focus)
}, },
promptPassphrase: function (title, text, inputValue, ok, cancel) { promptPassphrase: function (title, text, inputValue, ok, cancel) {
@ -89,7 +88,6 @@ const validateInput = (e) => {
} }
function prompt (title, text, hidden, inputValue, ok, cancel, focus) { function prompt (title, text, hidden, inputValue, ok, cancel, focus) {
console.log('inside prompt -> 2', title)
if (!inputValue) inputValue = '' if (!inputValue) inputValue = ''
var type = hidden ? 'password' : 'text' var type = hidden ? 'password' : 'text'
var input = yo` var input = yo`

Loading…
Cancel
Save