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