mail/src/background.js

10 lines
172 B
JavaScript
Raw Normal View History

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
2013-06-04 17:40:20 -04:00
'width': 800,
'height': 600
}
});
});