1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix non-ES6 import

This commit is contained in:
Dmitry Lyzo 2020-08-18 15:01:41 +03:00
parent d040177525
commit c2ebc35080

View file

@ -66,7 +66,7 @@ define(['jQuery', 'loading', 'libraryMenu', 'globalize', 'connectionManager', 'e
}
function alertText(options) {
require(['alert'], function ({default: alert}) {
require(['alert'], function (alert) {
alert(options);
});
}