jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/prompt/nativeprompt.js
2016-02-22 13:25:45 -05:00

20 lines
426 B
JavaScript

define([], function () {
return function (options) {
if (typeof options === 'string') {
options = {
label: '',
text: options
};
}
var result = prompt(options.label || '', options.text || '');
if (result) {
return Promise.resolve(result);
} else {
return Promise.reject(result);
}
};
});