aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-17 11:39:46 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-17 11:39:46 -0400
commit0255b6a553226b6947c0d1a4ba559630df86c0bd (patch)
tree028e52cc6e6cc5fbd65926b44dd49f96b21f2dd1
parent82ba09273daa4513cab15f9fabf58fb08d36cc21 (diff)
break up jquery mobile
-rw-r--r--MediaBrowser.WebDashboard/Api/PackageCreator.cs12
-rw-r--r--MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj3
2 files changed, 12 insertions, 3 deletions
diff --git a/MediaBrowser.WebDashboard/Api/PackageCreator.cs b/MediaBrowser.WebDashboard/Api/PackageCreator.cs
index 542b3df67..c8a491a6e 100644
--- a/MediaBrowser.WebDashboard/Api/PackageCreator.cs
+++ b/MediaBrowser.WebDashboard/Api/PackageCreator.cs
@@ -281,7 +281,7 @@ namespace MediaBrowser.WebDashboard.Api
"thirdparty/paper-toast/paper-toast.html",
"thirdparty/paper-spinner/paper-spinner.html",
//"thirdparty/paper-icon-button/paper-icon-button.html",
- //"thirdparty/iron-icons/iron-icons.html"
+ "thirdparty/iron-icons/iron-icons.html"
};
var importsHtml = string.Join("", imports.Select(i => "<link rel=\"import\" href=\"" + i + "\">").ToArray());
@@ -383,7 +383,6 @@ namespace MediaBrowser.WebDashboard.Api
var files = new[]
{
- "thirdparty/jquerymobile-1.4.5/jquery.mobile-1.4.5.min.css",
"thirdparty/fontawesome/css/font-awesome.min.css" + versionString,
"thirdparty/materialicons/style.css" + versionString,
"css/all.css" + versionString
@@ -627,6 +626,12 @@ namespace MediaBrowser.WebDashboard.Api
/// <returns>Task{Stream}.</returns>
private async Task<Stream> GetAllCss(bool enableMinification)
{
+ var memoryStream = new MemoryStream();
+ var newLineBytes = Encoding.UTF8.GetBytes(Environment.NewLine);
+
+ await AppendResource(memoryStream, "thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.theme.min.css", newLineBytes).ConfigureAwait(false);
+ await AppendResource(memoryStream, "thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.structure.min.css", newLineBytes).ConfigureAwait(false);
+
var files = new[]
{
"site.css",
@@ -690,7 +695,8 @@ namespace MediaBrowser.WebDashboard.Api
}
}
- var memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(css));
+ var bytes = Encoding.UTF8.GetBytes(css);
+ memoryStream.Write(bytes, 0, bytes.Length);
memoryStream.Position = 0;
return memoryStream;
diff --git a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
index 202f24066..55e49ab7d 100644
--- a/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
+++ b/MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj
@@ -192,6 +192,9 @@
<Content Include="dashboard-ui\thirdparty\iron-meta\iron-meta.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
+ <Content Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile.custom.icons.css" />
+ <Content Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile.custom.structure.min.css" />
+ <Content Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile.custom.theme.min.css" />
<Content Include="dashboard-ui\thirdparty\paper-behaviors\paper-button-behavior.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>