Bundler: Code reformat
This commit is contained in:
@@ -4,10 +4,9 @@ namespace Scrummer.Code
|
|||||||
{
|
{
|
||||||
public class ScriptsBundler : IHttpHandler
|
public class ScriptsBundler : IHttpHandler
|
||||||
{
|
{
|
||||||
public bool IsReusable
|
#region IHttpHandler
|
||||||
{
|
|
||||||
get { return false; }
|
public bool IsReusable { get { return false; } }
|
||||||
}
|
|
||||||
|
|
||||||
public void ProcessRequest(HttpContext context)
|
public void ProcessRequest(HttpContext context)
|
||||||
{
|
{
|
||||||
@@ -15,5 +14,7 @@ namespace Scrummer.Code
|
|||||||
context.Response.ContentType = "text/javascript";
|
context.Response.ContentType = "text/javascript";
|
||||||
bundler.WriteResponse(context.Response.OutputStream);
|
bundler.WriteResponse(context.Response.OutputStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,10 +4,9 @@ namespace Scrummer.Code
|
|||||||
{
|
{
|
||||||
public class StylesBundler : IHttpHandler
|
public class StylesBundler : IHttpHandler
|
||||||
{
|
{
|
||||||
public bool IsReusable
|
#region IHttpHandler
|
||||||
{
|
|
||||||
get { return false; }
|
public bool IsReusable { get { return false; } }
|
||||||
}
|
|
||||||
|
|
||||||
public void ProcessRequest(HttpContext context)
|
public void ProcessRequest(HttpContext context)
|
||||||
{
|
{
|
||||||
@@ -15,5 +14,7 @@ namespace Scrummer.Code
|
|||||||
context.Response.ContentType = "text/css";
|
context.Response.ContentType = "text/css";
|
||||||
bundler.WriteResponse(context.Response.OutputStream);
|
bundler.WriteResponse(context.Response.OutputStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user