mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update dialogs
This commit is contained in:
parent
89e6609ffa
commit
de40062c03
7 changed files with 28 additions and 19 deletions
|
@ -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">';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue