jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/toast/toast.js
2016-02-16 11:15:36 -05:00

19 lines
524 B
JavaScript

define(['paper-toast'], function () {
var toastId = 0;
return function (options) {
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);
};
});