1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-03-21 22:06:21 -04:00
parent d5dc8e15ea
commit 7cfa21451a
16 changed files with 150 additions and 131 deletions

View file

@ -254,7 +254,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
_onCaptureClick: function(event) {
var overlay = /** @type {?} */ (this.currentOverlay());
// Check if clicked outside of any overlay.
var target = Polymer.dom(event).rootTarget;
var target = /** @type {Element} */ (Polymer.dom(event).rootTarget);
if (overlay && this._overlayParent(target) !== overlay) {
overlay._onCaptureClick(event);
}