axmol/samples/Cpp/TestCpp/proj.nacl/res/main.js

17 lines
402 B
JavaScript
Raw Normal View History

2013-03-02 01:09:58 +08:00
chrome.app.runtime.onLaunched.addListener(function() {
var screenWidth = screen.availWidth;
var screenHeight = screen.availHeight;
var width = 800;
var height = 640;
chrome.app.window.create('index.html', {
width: width,
height: height,
minWidth: width,
minHeight: height,
type: 'panel',
left: (screenWidth-width)/2,
top: (screenHeight-height)/2
});
});