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-02 10:40:24 -03:00
'width': 1200,
'height': 800
2014-11-27 18:05:17 -03:00
}
});
});