Commit 4d3c7dee authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #58 from yann300/fea1

0.0.2 version
parents 49610eb9 a786c7a1
......@@ -2,7 +2,14 @@
<html>
<head>
</head>
<body>
<body onload="loadDebugger()" >
<script type="text/javascript">
function loadDebugger() {
var container = document.getElementById('app')
container.vmdebugger = new window.remix.Debugger()
container.appendChild(container.vmdebugger.render())
}
</script>
<div id="app"></div>
<script src="build/app.js"></script>
</body>
......
var Debugger = require('./src/Ethdebugger')
module.exports = Debugger
{
"name": "ethereum-remix",
"version": "0.0.1",
"version": "0.0.2-alpha.0.0.1",
"description": "Ethereum IDE and tools for the web",
"contributors": [
{
......@@ -12,7 +12,7 @@
"email": "liana@ethdev.com"
}
],
"main": "index.js",
"main": "./build/app.js",
"dependencies": {
"browserify": "^13.0.1",
"web3": "^0.15.3",
......@@ -35,7 +35,8 @@
"nightwatch_remote_firefox": "nightwatch --config nightwatch.js --env default",
"nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome",
"nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari",
"nightwatch_remote_ie": "nightwatch --config nightwatch.js --env ie"
"nightwatch_remote_ie": "nightwatch --config nightwatch.js --env ie",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
......
'use strict'
var Debugger = require('./Ethdebugger')
function init () {
var container = document.getElementById('app')
container.vmdebugger = new Debugger()
container.appendChild(container.vmdebugger.render())
if (typeof (module) !== 'undefined' && typeof (module.exports) !== 'undefined') {
module.exports = {
Debugger: Debugger
}
}
init()
if (window) {
window.remix = {
Debugger: Debugger
}
}
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