From 935436203ec25a985fa16c3accc207e45bf78bd6 Mon Sep 17 00:00:00 2001 From: per ploug Date: Tue, 25 Nov 2014 14:41:43 +0100 Subject: [PATCH] Adds razor helper comments to all grid razor views --- .../Views/Partials/Grid/Bootstrap2-Fluid.cshtml | 4 ++++ src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2.cshtml | 4 ++++ .../Views/Partials/Grid/Bootstrap3-Fluid.cshtml | 3 +++ src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3.cshtml | 4 ++++ 4 files changed, 15 insertions(+) diff --git a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2-Fluid.cshtml b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2-Fluid.cshtml index f3241071a6..446a82f510 100644 --- a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2-Fluid.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2-Fluid.cshtml @@ -2,6 +2,10 @@ @using Umbraco.Web.Templates @using Newtonsoft.Json.Linq +@* + Razor helpers located at the bottom of this file +*@ + @if (Model != null && Model.sections != null) { var oneColumn = ((System.Collections.ICollection)Model.sections).Count == 1; diff --git a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2.cshtml b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2.cshtml index 8b189ae1a0..5027348385 100644 --- a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap2.cshtml @@ -2,6 +2,10 @@ @using Umbraco.Web.Templates @using Newtonsoft.Json.Linq +@* + Razor helpers located at the bottom of this file +*@ + @if (Model != null && Model.sections != null) { var oneColumn = ((System.Collections.ICollection)Model.sections).Count == 1; diff --git a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3-Fluid.cshtml b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3-Fluid.cshtml index ca196661e2..1244821d7e 100644 --- a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3-Fluid.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3-Fluid.cshtml @@ -2,6 +2,9 @@ @using Umbraco.Web.Templates @using Newtonsoft.Json.Linq +@* + Razor helpers located at the bottom of this file +*@ @if (Model != null && Model.sections != null) { var oneColumn = ((System.Collections.ICollection)Model.sections).Count == 1; diff --git a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3.cshtml b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3.cshtml index e672aa2a11..a752042e90 100644 --- a/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/Grid/Bootstrap3.cshtml @@ -2,6 +2,10 @@ @using Umbraco.Web.Templates @using Newtonsoft.Json.Linq +@* + Razor helpers located at the bottom of this file +*@ + @if (Model != null && Model.sections != null) { var oneColumn = ((System.Collections.ICollection)Model.sections).Count == 1;