Skip to content

Instantly share code, notes, and snippets.

View aarongeorge's full-sized avatar
🤖

ADG aarongeorge

🤖
View GitHub Profile
@aarongeorge
aarongeorge / Equal Height Children.js
Created June 10, 2015 08:03
Equal Height Children
/**
* Equal Height without using Table or flexbox
*/
var EqualHeightChildren = function (container, childrenSelector) {
'use strict';
this.container = container;
this.options = {
childrenSelector: '*'
@aarongeorge
aarongeorge / .jscsrc
Last active August 29, 2015 14:22
My .jscsrc file for jscs v1.13.1
// DisallowOperatorBeforeLineBreak https://github.com/jscs-dev/node-jscs/issues/845
{
"disallowAnonymousFunctions": null,
"disallowCapitalizedComments": null,
"disallowCommaBeforeLineBreak": null,
"disallowCurlyBraces": null,
"disallowDanglingUnderscores": null,
"disallowEmptyBlocks": true,
"disallowFunctionDeclarations": null,
"disallowIdentifierNames": null,