update components

This commit is contained in:
Luke Pulverenti 2016-03-23 15:03:36 -04:00
parent ae421fa193
commit 02fd3db751
3 changed files with 9 additions and 8 deletions

View file

@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.1.81",
"_release": "1.1.81",
"version": "1.1.82",
"_release": "1.1.82",
"_resolution": {
"type": "version",
"tag": "1.1.81",
"commit": "73f83352f8263cc516f9756c39791a0e38031c27"
"tag": "1.1.82",
"commit": "7448174f423f41d47655b57235724856acb0a117"
},
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "~1.1.5",

View file

@ -272,7 +272,8 @@
var dlg = document.createElement('dialog');
// If there's no native dialog support, use a plain div
if (!dlg.showModal) {
// Also not working well in samsung tizen browser, content inside not clickable
if (!dlg.showModal || browser.tv) {
dlg = document.createElement('div');
}