Commit 1748be01 authored by yann300's avatar yann300

remix version

parent 16b214ca
......@@ -131,5 +131,6 @@
</div>
<script src="build/app.js"></script>
<script src="node_modules/ethereum-remix/build/app.js"></script>
</body>
</html>
......@@ -49,6 +49,7 @@ module.exports = {
'desiredCapabilities': {
'browserName': 'safari',
'javascriptEnabled': true,
'platform': 'MAC',
'acceptSslCerts': true,
'build': 'build-' + TRAVIS_JOB_NUMBER,
'tunnel-identifier': 'browsersolidity_tests_' + TRAVIS_JOB_NUMBER
......
......@@ -57,6 +57,6 @@
]
},
"dependencies": {
"ethereum-remix": "0.0.1"
"ethereum-remix": "0.0.2"
}
}
var Remix = require('ethereum-remix');
var $ = require('jquery');
function Debugger (executionContext, _id) {
this.el = document.querySelector(_id);
this.debugger = new Remix(executionContext.web3());
this.debugger = new window.remix.Debugger(executionContext.web3());
this.el.appendChild(this.debugger.render());
this.web3 = executionContext.web3();
this.debugView = $('ul#options li.debugView');
......
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