Wallet/chrome-app/initial.js

8 lines
170 B
JavaScript
Raw Permalink Normal View History

2015-04-16 12:24:35 -03:00
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': 400,
'height': 600
}
});
});