Commit d3f9ae14 authored by yann300's avatar yann300

bug icon

parent a0aa53b2
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
<li class="txView" title="Transaction"><i class="fa fa-send"></i></li> <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="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="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> <li id="helpButton"><a href="https://solidity.readthedocs.org" target="_blank" title="Open Documentation" class="fa fa-question"></a></li>
</ul> </ul>
<img id="solIcon" title="Solidity realtime compiler and runtime" src="assets/img/sol.svg" alt="Solidity realtime compiler and runtime"> <img id="solIcon" title="Solidity realtime compiler and runtime" src="assets/img/sol.svg" alt="Solidity realtime compiler and runtime">
...@@ -131,6 +131,5 @@ ...@@ -131,6 +131,5 @@
</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>
...@@ -29,7 +29,9 @@ ...@@ -29,7 +29,9 @@
"semistandard": "^7.0.0", "semistandard": "^7.0.0",
"tape": "^4.5.1", "tape": "^4.5.1",
"web3": "^0.16.0", "web3": "^0.16.0",
"webworkify": "^1.2.1" "webworkify": "^1.2.1",
"yo-yo": "^1.2.2",
"yo-yoify": "^3.3.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
......
var $ = require('jquery'); var $ = require('jquery');
var Remix = require('ethereum-remix');
function Debugger (executionContext, _id) { function Debugger (executionContext, _id) {
this.el = document.querySelector(_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.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