mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
34 lines
752 B
JavaScript
34 lines
752 B
JavaScript
define(['dialog', 'globalize'], function (dialog, globalize) {
|
|
'use strict';
|
|
|
|
return function (text, title) {
|
|
|
|
var options;
|
|
if (typeof text === 'string') {
|
|
options = {
|
|
title: title,
|
|
text: text
|
|
};
|
|
} else {
|
|
options = text;
|
|
}
|
|
|
|
var items = [];
|
|
|
|
items.push({
|
|
name: globalize.translate('sharedcomponents#ButtonGotIt'),
|
|
id: 'ok',
|
|
type: 'submit'
|
|
});
|
|
|
|
options.buttons = items;
|
|
|
|
return dialog(options).then(function (result) {
|
|
if (result === 'ok') {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
return Promise.reject();
|
|
});
|
|
};
|
|
}); |