Commit 8f90b540 authored by aniket-engg's avatar aniket-engg Committed by Aniket

removed consoles

parent 231895c0
......@@ -8,7 +8,6 @@ module.exports = {
return modal('Alert', yo`<div>${title}</div>`, null, { label: null })
},
prompt: function (title, text, inputValue, ok, cancel, focus) {
console.log('inside prompt -> 1', title)
return prompt(title, text, false, inputValue, ok, cancel, focus)
},
promptPassphrase: function (title, text, inputValue, ok, cancel) {
......@@ -89,7 +88,6 @@ const validateInput = (e) => {
}
function prompt (title, text, hidden, inputValue, ok, cancel, focus) {
console.log('inside prompt -> 2', title)
if (!inputValue) inputValue = ''
var type = hidden ? 'password' : 'text'
var input = yo`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment