jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/prompt/nativeprompt.js
2016-10-18 01:06:48 -04:00

28 lines
599 B
JavaScript

define([], function () {
'use strict';
function replaceAll(str, find, replace) {
return str.split(find).join(replace);
}
return function (options) {
if (typeof options === 'string') {
options = {
label: '',
text: options
};
}
var label = replaceAll(options.label || '', '<br/>', '\n');
var result = prompt(label, options.text || '');
if (result) {
return Promise.resolve(result);
} else {
return Promise.reject(result);
}
};
});