mail/src/background.js

20 lines
514 B
JavaScript
Raw Permalink Normal View History

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
2014-08-13 07:49:17 -04:00
chrome.runtime.getPlatformInfo(function(info) {
// don't render statusbar over app UI on iOS
if (info.os === 'cordova-ios' && window.StatusBar) {
window.StatusBar.overlaysWebView(false);
2013-09-03 09:25:02 -04:00
}
2014-08-13 07:49:17 -04:00
// open chrome app in new window
chrome.app.window.create('index.html', {
'bounds': {
'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
});