mail/src/background.js

10 lines
173 B
JavaScript
Raw Normal View History

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
2013-06-25 09:34:39 -04:00
'width': 1024,
'height': 650
}
});
});