diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 2dcdd25ea..8245f7225 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -16,12 +16,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.1.76", - "_release": "1.1.76", + "version": "1.1.78", + "_release": "1.1.78", "_resolution": { "type": "version", - "tag": "1.1.76", - "commit": "e7cc31f88846c05eeff160a59e070ff6660e2d29" + "tag": "1.1.78", + "commit": "85d02734e04fc0db76b288a0e57e157e6c303bf1" }, "_source": "git://github.com/MediaBrowser/emby-webcomponents.git", "_target": "~1.1.5", diff --git a/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.css b/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.css index 40e07e9e3..28f1ac8fb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.css +++ b/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.css @@ -4,7 +4,6 @@ z-index: 999999 !important; background-color: #fff; position: fixed; - display: block; margin: 24px 40px; -webkit-overflow-scrolling: touch; background: #ffffff; diff --git a/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js b/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js index 8540980bb..a9f7955c6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js +++ b/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js @@ -86,6 +86,8 @@ hasManualBackdrop = true; dlg.show(); } + // Undo the auto-focus applied by the native dialog element + safeBlur(document.activeElement); } else { addBackdropOverlay(dlg); hasManualBackdrop = true; @@ -100,9 +102,6 @@ } animateDialogOpen(dlg); - // Undo the auto-focus applied by the native dialog element - safeBlur(document.activeElement); - if (dlg.getAttribute('data-autofocus') == 'true') { focusManager.autoFocus(dlg); } @@ -322,9 +321,9 @@ // too buggy in IE, not even worth it if (!browser.animate) { - //dlg.animationConfig = null; - //dlg.entryAnimation = null; - //dlg.exitAnimation = null; + dlg.animationConfig = null; + dlg.entryAnimation = null; + dlg.exitAnimation = null; } dlg.classList.add('paperDialog');