bugfix - prevent iframe restart restart

feature/default_network_editable
kumavis 8 years ago
parent 850b6d1440
commit 4cfcb4452a
  1. 3
      library/controller.js
  2. 11
      library/example/index.js

@ -51,7 +51,8 @@ function initializeZeroClient() {
if (err) throw err
})
multiStream.on('data', function(chunk){ console.log(chunk) })
// connectionStream.on('data', function(chunk){ console.log('connectionStream chuck', chunk) })
// multiStream.on('data', function(chunk){ console.log('multiStream chuck', chunk) })
var providerStream = multiStream.createStream('provider')
handleRequestsFromStream(providerStream, provider, logger)

@ -3,12 +3,10 @@ window.addEventListener('load', web3Detect)
function web3Detect() {
if (global.web3) {
document.body.innerHTML += 'web3 detected!'
console.log('web3 detected!')
logToDom('web3 detected!')
startApp()
} else {
document.body.innerHTML += 'no web3 detected!'
console.log('no web3 detected!')
logToDom('no web3 detected!')
}
}
@ -49,3 +47,8 @@ function startApp(){
})
}
function logToDom(message){
document.body.appendChild(document.createTextNode(message))
console.log(message)
}
Loading…
Cancel
Save