817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
|
chrome.app.window.create('ui.html', {
"id": "cackeyUI",
"focused": true,
"innerBounds": {
"width": 350,
"minWidth": 350,
"height": 136,
"minHeight": 135
}
}, function(uiWindow) {
if (!uiWindow) {
return;
}
|
<
|
817
818
819
820
821
822
823
824
825
826
827
828
829
830
|
chrome.app.window.create('ui.html', {
"id": "cackeyUI",
"focused": true,
"innerBounds": {
"width": 350,
"minWidth": 350,
"height": 136,
"minHeight": 135
}
}, function(uiWindow) {
if (!uiWindow) {
return;
}
|