Wallet/initial.js

8 lines
171 B
JavaScript
Raw Normal View History

2014-11-27 18:05:17 -03:00
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
2014-12-01 11:19:18 -03:00
'width': 1024,
'height': 768
2014-11-27 18:05:17 -03:00
}
});
});