mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
20 lines
388 B
JavaScript
20 lines
388 B
JavaScript
![]() |
define([], function () {
|
||
|
|
||
|
return function (options) {
|
||
|
|
||
|
if (typeof options === 'string') {
|
||
|
options = {
|
||
|
title: '',
|
||
|
text: options
|
||
|
};
|
||
|
}
|
||
|
|
||
|
var result = confirm(options.text);
|
||
|
|
||
|
if (result) {
|
||
|
return Promise.resolve();
|
||
|
} else {
|
||
|
return Promise.reject();
|
||
|
}
|
||
|
};
|
||
|
});
|