update live tv image

This commit is contained in:
Luke Pulverenti 2015-08-28 00:19:08 -04:00
parent 9599bbbd35
commit 06b74be1fd
16 changed files with 122 additions and 168 deletions

View file

@ -45,7 +45,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
}
function currentOverlay() {
return overlays[overlays.length-1];
var i = overlays.length - 1;
while (overlays[i] && !overlays[i].opened) {
--i;
}
return overlays[i];
}
function currentOverlayZ() {