copay/initial.js

9 lines
171 B
JavaScript
Raw Normal View History

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