mail/src/background.js

16 lines
352 B
JavaScript
Raw Normal View History

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
2014-08-13 07:49:17 -04:00
chrome.runtime.getPlatformInfo(function() {
2014-08-13 07:49:17 -04:00
// open chrome app in new window
chrome.app.window.create('index.html', {
id: '0',
innerBounds: {
width: 1280,
height: 800
2014-08-13 07:49:17 -04:00
}
});
2013-09-03 09:25:02 -04:00
});
2014-08-13 07:49:17 -04:00
});