mail/src/background.js

20 lines
514 B
JavaScript

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
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);
}
// open chrome app in new window
chrome.app.window.create('index.html', {
'bounds': {
'width': 1024,
'height': 768
}
});
});
});