Skip to content

Instantly share code, notes, and snippets.

@fullstackplus
fullstackplus / related_by_category_spec.rb
Created February 18, 2013 14:58
Setting up data for testing with the RelatedByCategory gem (Nesta).
@fullstackplus
fullstackplus / dropcap.js
Created February 6, 2011 16:28
Styled dropcaps with CSS and JavaScript
/*
A function to turn the first letter of the main article of your blog into a styled dropcap.
See example here: http://jamesabbottdd.com/articles
Change the id of the first article to reflect your markup:
var main_entry = document.getElementById("main-entry");
...and you're good to go.
*/
function addDropCap() {
//separate the drop cap
var main_entry = document.getElementById("main-entry");