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

trim down listview

This commit is contained in:
Luke Pulverenti 2016-02-07 14:47:09 -05:00
parent 484e60e328
commit dd1b33021d
26 changed files with 175 additions and 159 deletions

View file

@ -1,4 +1,4 @@
define(['https://www.gstatic.com/cv/js/sender/v1/cast_sender.js'], function () {
define([], function () {
// Based on https://github.com/googlecast/CastVideos-chrome/blob/master/CastVideos.js
var currentResolve;
@ -874,6 +874,10 @@
}));
}
initializeChromecast();
var fileref = document.createElement('script');
fileref.setAttribute("type", "text/javascript");
fileref.onload = initializeChromecast;
fileref.setAttribute("src", "https://www.gstatic.com/cv/js/sender/v1/cast_sender.js");
document.querySelector('head').appendChild(fileref);
});