1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-25 18:32:20 -05:00
mail/src/background.js
Tankred Hase fb0454142c Fix typos
2015-01-12 14:50:58 +01:00

14 lines
264 B
JavaScript

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
// open chrome app in new window
chrome.app.window.create('index.html', {
id: '0',
innerBounds: {
width: 1280,
height: 800
}
});
});