- Rémi Prévost (added 2012/01/27)
- Simon Prévost (added 2012/01/27)
- Vincent Roy-Chevalier (added 2012/01/27)
- Louis-Andrée Labadie (added 2012/01/27)
- Pierre-Luc Babin (added 2012/01/27)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof window.localStorage == 'undefined' || typeof window.sessionStorage == 'undefined') (function () { | |
var Storage = function (type) { | |
function createCookie(name, value, days) { | |
var date, expires; | |
if (days) { | |
date = new Date(); | |
date.setTime(date.getTime()+(days*24*60*60*1000)); | |
expires = "; expires="+date.toGMTString(); |