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.

11 lines
325 B

  1. // Compute window frame size - used only for Chrome App
  2. function computeSize() {
  3. document.getElementById("sugarizerframe").height = window.innerHeight;
  4. }
  5. computeSize();
  6. window.onresize = computeSize;
  7. // Process quit application
  8. window.addEventListener('message', function(event) {
  9. chrome.app.window.current().close();
  10. });