I have an old webpage that is generated in house. The page is a production report that is updated frequently and leadership would like to see the report shown on Appspace screens in several locations.
The problem is, the screen is formatted in a weird way. whatever I do, the screen seems to come up in the upper left corner of the screen.
I suspect the original author designed it for 1024X764 screens and locked in a lot of dimensions to keep things lined up.
I downloaded the WWW Card I am using to display the URL, I can see JSON, JAVA, a CSS, and a HTML document.
Does anyone have a suggestion where I can look to force a screen resolution on the card so the image fills the screen?
under dist.min.js I count a section called “controller: function()”
In there I can see this code:
controller: function($scope, $q, $element, $timeout, $interval) {
var timeout = null;
var loadTimeout = null;
var resizeTimer = null;
var updateScaleTimeout = null;
var player = $('#main');
var lastWidth = $(window).width();
var lastHeight = $(window).height();
var errorTimeout = null;
var currentLoadingUrl;
Maybe I can modify the window Height and width and adjust the resolution?
Thanks,
-Mike
