mirror of
https://github.com/moparisthebest/mail
synced 2024-12-23 07:48:48 -05:00
20 lines
514 B
JavaScript
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
|
|
}
|
|
});
|
|
});
|
|
|
|
}); |