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

@ -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');
}