update reports

This commit is contained in:
Luke Pulverenti
2015-07-27 15:16:30 -04:00
parent 7f9be0801d
commit d13fafbc36
7 changed files with 247 additions and 273 deletions

View File

@@ -314,7 +314,9 @@ namespace MediaBrowser.WebDashboard.Api
// In chrome it is causing the body to be hidden while loading, which leads to width-check methods to return 0 for everything
//imports = "";
html = html.Replace("<head>", "<head>" + GetMetaTags(mode) + GetCommonCss(mode, appVersion) + GetInitialJavascript(mode, appVersion) + importsHtml + GetCommonJavascript(mode, appVersion));
html = html.Replace("<head>", "<head>" + GetMetaTags(mode) + GetCommonCss(mode, appVersion));
html = html.Replace("</body>", GetInitialJavascript(mode, appVersion) + importsHtml + GetCommonJavascript(mode, appVersion)) + "</body>";
var bytes = Encoding.UTF8.GetBytes(html);