not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
325 B

// Compute window frame size - used only for Chrome App
function computeSize() {
document.getElementById("sugarizerframe").height = window.innerHeight;
}
computeSize();
window.onresize = computeSize;
// Process quit application
window.addEventListener('message', function(event) {
chrome.app.window.current().close();
});