Commit 1748be01 authored by yann300's avatar yann300

remix version

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