This commit is contained in:
obscuren 2014-12-22 11:56:34 +01:00
parent ed7e05fb2a
commit a153b47c2b
2 changed files with 3 additions and 2 deletions

View File

@ -59,7 +59,8 @@ Rectangle {
}
Component.onCompleted: {
webview.url = "http://etherian.io"
//webview.url = "http://etherian.io"
webview.url = "file:///Users/jeffrey/test.html"
}
signal messages(var messages, int id);

View File

@ -45,7 +45,7 @@ ApplicationWindow {
// Takes care of loading all default plugins
Component.onCompleted: {
var wallet = addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum", active: true});
var browser = addPlugin("./webapp.qml", {noAdd: true, close: false, section: "ethereum", active: true});
var browser = addPlugin("./browser.qml", {noAdd: true, close: false, section: "ethereum", active: true});
root.browser = browser;
addPlugin("./views/miner.qml", {noAdd: true, close: false, section: "ethereum", active: true});