You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

10 years ago
<!doctype html>
<html>
<head>
<script src="qrc:///js/bignumber.min.js"></script>
<script src="qrc:///js/webthree.js"></script>
<script>
loadPage = function(url) {
var preview = document.getElementById('preview');
preview.src = url;
};
reloadPage = function() {
var preview = document.getElementById('preview');
preview.contentWindow.location.reload();
};
updateContract = function(address, contractFace) {
if (window.web3) {
window.web3.provider.polls = [];
window.contractAddress = address;
window.contractInterface = contractFace;
window.contract = window.web3.eth.contract(address, contractFace);
window.deploy = {
contractAddress: address,
contractInterface: contractFace,
contract: window.contract,
web3: window.web3
};
}
};
init = function(url) {
web3 = require('web3');
window.web3 = web3;
web3.setProvider(new web3.providers.HttpSyncProvider(url));
};
10 years ago
</script>
<style>
body {
margin: 0;
}
</style>
</head>
10 years ago
<body><iframe src="" name="preview" id="preview" style="border: 0; position:absolute; top:0; left:0; right:0; bottom:0; width:100%; height:100%"></iframe></body>
10 years ago
</html>