Skip to content

Instantly share code, notes, and snippets.

View adamwdraper's full-sized avatar

Adam Draper adamwdraper

View GitHub Profile
@adamwdraper
adamwdraper / html
Created April 12, 2012 19:02
Javascript AMD Display Notification Module
<div id="notify">
<p></p>
<a class="close" href="#">x</a>
</div>
@adamwdraper
adamwdraper / gist:2370107
Created April 12, 2012 18:59
Javascript AMD Cookie Manager Module
define([], function () {
var CookieManager = function() {};
CookieManager.prototype.createCookie = function(name, value, days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
} else {