diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-27 15:16:30 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-27 15:16:30 -0400 |
| commit | d13fafbc36eeba129fb007f2ad821eb503f1eb0e (patch) | |
| tree | 183fbba901aa3d931d010cecf04c3d8d5fad3f70 /MediaBrowser.WebDashboard/Api/PackageCreator.cs | |
| parent | 7f9be0801dd583b385c53489050bbb402f4b296e (diff) | |
update reports
Diffstat (limited to 'MediaBrowser.WebDashboard/Api/PackageCreator.cs')
| -rw-r--r-- | MediaBrowser.WebDashboard/Api/PackageCreator.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.WebDashboard/Api/PackageCreator.cs b/MediaBrowser.WebDashboard/Api/PackageCreator.cs index a29a03ca1..6c6320b28 100644 --- a/MediaBrowser.WebDashboard/Api/PackageCreator.cs +++ b/MediaBrowser.WebDashboard/Api/PackageCreator.cs @@ -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); |
