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

@ -9721,7 +9721,11 @@ CSS properties | Action
}
function currentOverlay() {
return overlays[overlays.length-1];
var i = overlays.length - 1;
while (overlays[i] && !overlays[i].opened) {
--i;
}
return overlays[i];
}
function currentOverlayZ() {
@ -9907,17 +9911,6 @@ context. You should place this element as a child of `<body>` whenever possible.
},
/**
* Fired after the `iron-overlay` opens.
* @event iron-overlay-opened
*/
/**
* Fired after the `iron-overlay` closes.
* @event iron-overlay-closed
* @param {{canceled: (boolean|undefined)}} set to the `closingReason` attribute
*/
listeners: {
'click': '_onClick',
'iron-resize': '_onIronResize'
@ -10194,6 +10187,16 @@ context. You should place this element as a child of `<body>` whenever possible.
}
}
/**
* Fired after the `iron-overlay` opens.
* @event iron-overlay-opened
*/
/**
* Fired after the `iron-overlay` closes.
* @event iron-overlay-closed
* @param {{canceled: (boolean|undefined)}} set to the `closingReason` attribute
*/
};
/** @polymerBehavior */