Skip to content

Commit

Permalink
bug icon
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Jul 18, 2016
1 parent a0aa53b commit d3f9ae1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<li class="txView" title="Transaction"><i class="fa fa-send"></i></li>
<li class="envView" title="Environment"><i class="fa fa-cube"></i></li>
<li class="publishView" title="Publish" ><i class="fa fa-cloud-upload"></i></li>
<li class="debugView" title="Debugger"><i class="fa fa-cube"></i></li>
<li class="debugView" title="Debugger"><i class="fa fa-bug"></i></li>
<li id="helpButton"><a href="https://solidity.readthedocs.org" target="_blank" title="Open Documentation" class="fa fa-question"></a></li>
</ul>
<img id="solIcon" title="Solidity realtime compiler and runtime" src="assets/img/sol.svg" alt="Solidity realtime compiler and runtime">
Expand Down Expand Up @@ -131,6 +131,5 @@
</div>

<script src="build/app.js"></script>
<script src="node_modules/ethereum-remix/build/app.js"></script>
</body>
</html>
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
"semistandard": "^7.0.0",
"tape": "^4.5.1",
"web3": "^0.16.0",
"webworkify": "^1.2.1"
"webworkify": "^1.2.1",
"yo-yo": "^1.2.2",
"yo-yoify": "^3.3.0"
},
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion src/app/debugger.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
var $ = require('jquery');
var Remix = require('ethereum-remix');

function Debugger (executionContext, _id) {
this.el = document.querySelector(_id);
this.debugger = new window.remix.Debugger(executionContext.web3());
this.debugger = new Remix.Debugger(executionContext.web3());
this.el.appendChild(this.debugger.render());
this.web3 = executionContext.web3();
this.debugView = $('ul#options li.debugView');
Expand Down

0 comments on commit d3f9ae1

Please sign in to comment.