Merge pull request #976 from ethereum/fixConsole

Various Fix in Console
pull/1/head
yann300 7 years ago committed by GitHub
commit 5016f7803e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/app/panels/terminal.js

@ -687,7 +687,7 @@ class Terminal {
try { try {
var cmds = vm.createContext(Object.assign(self._jsSandboxContext, context)) var cmds = vm.createContext(Object.assign(self._jsSandboxContext, context))
var result = vm.runInContext(script, cmds) var result = vm.runInContext(script, cmds)
self._jsSandboxContext = Object.assign({}, context) self._jsSandboxContext = Object.assign(cmds, context)
done(null, result) done(null, result)
} catch (error) { } catch (error) {
done(error.message) done(error.message)
@ -702,7 +702,15 @@ function domTerminalFeatures (self, scopedCommands) {
log: function () { scopedCommands.log.apply(scopedCommands, arguments) }, log: function () { scopedCommands.log.apply(scopedCommands, arguments) },
info: function () { scopedCommands.info.apply(scopedCommands, arguments) }, info: function () { scopedCommands.info.apply(scopedCommands, arguments) },
error: function () { scopedCommands.error.apply(scopedCommands, arguments) } error: function () { scopedCommands.error.apply(scopedCommands, arguments) }
} },
setTimeout: (fn, time) => {
return setTimeout(() => { self._shell('(' + fn.toString() + ')()', scopedCommands, () => {}) }, time)
},
setInterval: (fn, time) => {
return setInterval(() => { self._shell('(' + fn.toString() + ')()', scopedCommands, () => {}) }, time)
},
clearTimeout: clearTimeout,
clearInterval: clearInterval
} }
} }

Loading…
Cancel
Save