Skip to content

Instantly share code, notes, and snippets.

View vipervf1's full-sized avatar

Alex Vilmur vipervf1

  • Marcel Digital
  • Chicago, IL
View GitHub Profile
@vipervf1
vipervf1 / HelperExampleCrop.cshtml
Last active August 29, 2015 14:21
Gist's for the Marcel Digital Blog post about creating a ImageGen HTML Helper.
<img src='@Umbraco.ImageGenUrl(Model.Content.GetPropertyValue<int>("image"), new { width = 200, height = 270, crop = "resize" })'
alt="Image" />
@vipervf1
vipervf1 / BeginKnockoutLoadingContainerWriter.cs
Created March 18, 2015 14:15
HTML Helper in C# to prevent FOUC in Knockout
namespace MyNamespace.Knockout
{
public class BeginKnockoutLoadingContainerWriter : IDisposable
{
protected ViewContext _viewContext;
public BeginKnockoutLoadingContainerWriter(ViewContext context)
{
if (context == null)
throw new ArgumentNullException("context");