init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
16
KretaWeb/Helpers/EmptyExtensions.cs
Normal file
16
KretaWeb/Helpers/EmptyExtensions.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System.Text;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace Kreta.Web.Helpers
|
||||
{
|
||||
public static class EmptyExtensions
|
||||
{
|
||||
public static MvcHtmlString KretaEmpty(this HtmlHelper helper, int width = 6)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.AppendFormat("<div class=\"searchInputRowHeight emptyRow {0} \"></div>", BootsrapHelper.GetSizeClasses(width));
|
||||
|
||||
return new MvcHtmlString(sb.ToString());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue