2014-01-05 16:07:11 +00:00
|
|
|
/*!
|
2014-02-20 00:47:22 +00:00
|
|
|
* Webogram v0.0.18 - messaging web application for MTProto
|
2014-01-05 16:07:11 +00:00
|
|
|
* https://github.com/zhukov/webogram
|
|
|
|
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
|
|
|
|
* https://github.com/zhukov/webogram/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
chrome.app.runtime.onLaunched.addListener(function(launchData) {
|
|
|
|
chrome.app.window.create('../index.html', {
|
|
|
|
bounds: {
|
2014-02-12 15:10:05 +00:00
|
|
|
width: 900,
|
2014-01-05 16:07:11 +00:00
|
|
|
height: 700
|
|
|
|
},
|
2014-02-10 17:25:21 +00:00
|
|
|
minWidth: 320,
|
2014-02-02 19:15:56 +00:00
|
|
|
minHeight: 400,
|
2014-01-05 16:07:11 +00:00
|
|
|
frame: 'chrome'
|
|
|
|
});
|
2014-02-13 15:37:20 +00:00
|
|
|
});
|