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

fix ie hang on library setup

This commit is contained in:
Luke Pulverenti 2015-10-17 12:29:42 -04:00
parent 3d458f8076
commit 3d0d3247fd
13 changed files with 58 additions and 15 deletions

View file

@ -2,7 +2,7 @@
function init(page, type, providerId) {
var url = 'tvproviders/' + type + '.js';
var url = 'components/tvproviders/' + type + '.js';
require([url], function (factory) {
@ -15,10 +15,10 @@
function loadTemplate(page, type, providerId) {
ApiClient.ajax({
HttpClient.send({
type: 'GET',
url: 'tvproviders/' + type + '.template.html'
url: 'components/tvproviders/' + type + '.template.html'
}).done(function (html) {