jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/toast/toast.js

25 lines
647 B
JavaScript
Raw Normal View History

2016-02-16 09:15:36 -07:00
define(['paper-toast'], function () {
var toastId = 0;
return function (options) {
2016-02-24 23:38:12 -07:00
if (typeof options === 'string') {
options = {
text: options
};
}
2016-02-16 09:15:36 -07:00
var elem = document.createElement("paper-toast");
elem.setAttribute('text', options.text);
elem.id = 'toast' + (toastId++);
document.body.appendChild(elem);
// This timeout is obviously messy but it's unclear how to determine when the webcomponent is ready for use
// element onload never fires
setTimeout(function () {
elem.show();
}, 300);
};
});