jQuery to resize Canvas App iframe to full screen

  $( document ).ready(function() {
    var windowHeight = $(window).height();
    $('.canvas-app-embed').attr('height',windowHeight + 'px');
  });
Franco Musso