From a0baf6282bc049df80de8b457a1703cb295d2015 Mon Sep 17 00:00:00 2001 From: Allan Molsen Larsen <24ph88@gmail.com> Date: Sun, 29 Jun 2014 11:57:00 +0200 Subject: [PATCH] Update EmbeddedController.cs Changed css mimetype in order to correctly load stylesheet. --- EmbeddedPropEditorExample/EmbeddedController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EmbeddedPropEditorExample/EmbeddedController.cs b/EmbeddedPropEditorExample/EmbeddedController.cs index 099f773..6a52763 100644 --- a/EmbeddedPropEditorExample/EmbeddedController.cs +++ b/EmbeddedPropEditorExample/EmbeddedController.cs @@ -31,10 +31,10 @@ private string GetMIMEType(string fileId) } if (fileId.EndsWith(".css")) { - return "text/stylesheet"; + return "text/css"; } return "text"; } } -} \ No newline at end of file +}