Skip to content

Instantly share code, notes, and snippets.

@joshtombs
Created July 16, 2014 19:13
Show Gist options
  • Save joshtombs/20e23d23f071db7c1f6b to your computer and use it in GitHub Desktop.
Save joshtombs/20e23d23f071db7c1f6b to your computer and use it in GitHub Desktop.
window.site = window.site || {};
;(function(){
var lineofCode = site.NewLine('Super Secret Stuff');
var feature = new site.Views.FeatureView({
model: lineofCode
});
feature.render();
})()
site.NewLine = function(input){
var line = new site.Models.CodeLine({
text: input
});
return line
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment