1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/background.js

11 lines
243 B
JavaScript
Raw Normal View History

'use strict';
// open chrome app in new window
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('chrome.html', {
2013-09-03 09:25:02 -04:00
'bounds': {
'width': 1024,
'height': 768
}
});
});