Skip to content

Instantly share code, notes, and snippets.

View jefsnare's full-sized avatar

Jeffrey de Graaf jefsnare

View GitHub Profile
@jefsnare
jefsnare / SassMeister-input.scss
Created June 3, 2014 08:03
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
//assignment 1
.car {
zoom: 1;
&__tire {
zoom: 2;
@jefsnare
jefsnare / JG_Localstorage
Last active August 29, 2015 13:57
JG_LocalStorage helper methods for javascript localStorage
/**
* Various localStorage method helpers for setting,
* getting and checking localStorage data.
*/
JG_LocalStorage = (function () {
'use strict';
return {
/* add data to localStorage */
set: function (key, value) {
@jefsnare
jefsnare / pattern.js
Created October 30, 2013 12:57
JS pattern
// top-level namespace
var myApp = myApp || {};
// directly assign a nested namespace
myApp.library = {
foo:function(){
//...
}
};