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

globalization fix

This commit is contained in:
Luke Pulverenti 2015-12-12 16:16:33 -05:00
parent 64354206a0
commit ac5697b240
8 changed files with 47 additions and 35 deletions

View file

@ -76,8 +76,12 @@
function renderForm(options) {
require(['paper-checkbox', 'paper-input'], function () {
renderFormInternal(options);
return new Promise(function (resolve, reject) {
require(['paper-checkbox', 'paper-input'], function () {
renderFormInternal(options);
resolve();
});
});
}