mirror of
https://github.com/moparisthebest/mail
synced 2025-02-16 15:10:10 -05:00
21 lines
534 B
JavaScript
21 lines
534 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', {
|
|
id: '0',
|
|
innerBounds: {
|
|
width: 1280,
|
|
height: 800
|
|
}
|
|
});
|
|
});
|
|
|
|
}); |