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

update dialogs

This commit is contained in:
Luke Pulverenti 2016-04-09 22:27:09 -04:00
parent 89e6609ffa
commit de40062c03
7 changed files with 28 additions and 19 deletions

View file

@ -66,8 +66,10 @@ define(['layoutManager', 'dialogText'], function (layoutManager, dialogText) {
html += '<h2>' + options.title + '</h2>';
}
if (options.text) {
html += '<div>' + options.text + '</div>';
var text = options.html || options.text;
if (text) {
html += '<div>' + text + '</div>';
}
html += '<div class="buttons">';