From 597eb43ba18a23fc1f3e4bc4eb758a3f8b6c1cf8 Mon Sep 17 00:00:00 2001 From: poztin Date: Thu, 21 Feb 2013 10:39:04 +0000 Subject: [PATCH] Update TwitterBootstrapHelpers/Layout/Span.cs The spanWidth parameter passed to the Span constructors never gets set. --- TwitterBootstrapHelpers/Layout/Span.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TwitterBootstrapHelpers/Layout/Span.cs b/TwitterBootstrapHelpers/Layout/Span.cs index 6bdc16f..b228db3 100644 --- a/TwitterBootstrapHelpers/Layout/Span.cs +++ b/TwitterBootstrapHelpers/Layout/Span.cs @@ -17,6 +17,7 @@ public Span(ViewContext viewContext, int spanWidth) public Span(ViewContext viewContext, int spanWidth, int? offset) : base("div", viewContext) { + SpanWidth = spanWidth; Offset = offset; }