| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | /*! | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  |  * jQuery Cookie Plugin v1.4.1 | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  |  * https://github.com/carhartl/jquery-cookie
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2013 Klaus Hartl | 
					
						
							|  |  |  |  * Released under the MIT license | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | (function (factory) { | 
					
						
							|  |  |  | 	if (typeof define === 'function' && define.amd) { | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 		// AMD
 | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 		define(['jquery'], factory); | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 	} else if (typeof exports === 'object') { | 
					
						
							|  |  |  | 		// CommonJS
 | 
					
						
							|  |  |  | 		factory(require('jquery')); | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 		// Browser globals
 | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 		factory(jQuery); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }(function ($) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var pluses = /\+/g; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 	function encode(s) { | 
					
						
							|  |  |  | 		return config.raw ? s : encodeURIComponent(s); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 	function decode(s) { | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 		return config.raw ? s : decodeURIComponent(s); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	function stringifyCookieValue(value) { | 
					
						
							|  |  |  | 		return encode(config.json ? JSON.stringify(value) : String(value)); | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 	function parseCookieValue(s) { | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 		if (s.indexOf('"') === 0) { | 
					
						
							|  |  |  | 			// This is a quoted cookie as according to RFC2068, unescape...
 | 
					
						
							|  |  |  | 			s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\'); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		try { | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 			// Replace server-side written pluses with spaces.
 | 
					
						
							|  |  |  | 			// If we can't decode the cookie, ignore it, it's unusable.
 | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 			// If we can't parse the cookie, ignore it, it's unusable.
 | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 			s = decodeURIComponent(s.replace(pluses, ' ')); | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 			return config.json ? JSON.parse(s) : s; | 
					
						
							|  |  |  | 		} catch(e) {} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 	function read(s, converter) { | 
					
						
							|  |  |  | 		var value = config.raw ? s : parseCookieValue(s); | 
					
						
							|  |  |  | 		return $.isFunction(converter) ? converter(value) : value; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 	var config = $.cookie = function (key, value, options) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Write
 | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (value !== undefined && !$.isFunction(value)) { | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 			options = $.extend({}, config.defaults, options); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (typeof options.expires === 'number') { | 
					
						
							|  |  |  | 				var days = options.expires, t = options.expires = new Date(); | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 				t.setTime(+t + days * 864e+5); | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return (document.cookie = [ | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 				encode(key), '=', stringifyCookieValue(value), | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 				options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
 | 
					
						
							|  |  |  | 				options.path    ? '; path=' + options.path : '', | 
					
						
							|  |  |  | 				options.domain  ? '; domain=' + options.domain : '', | 
					
						
							|  |  |  | 				options.secure  ? '; secure' : '' | 
					
						
							|  |  |  | 			].join('')); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Read
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var result = key ? undefined : {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// To prevent the for loop in the first place assign an empty array
 | 
					
						
							|  |  |  | 		// in case there are no cookies at all. Also prevents odd result when
 | 
					
						
							|  |  |  | 		// calling $.cookie().
 | 
					
						
							|  |  |  | 		var cookies = document.cookie ? document.cookie.split('; ') : []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (var i = 0, l = cookies.length; i < l; i++) { | 
					
						
							|  |  |  | 			var parts = cookies[i].split('='); | 
					
						
							|  |  |  | 			var name = decode(parts.shift()); | 
					
						
							|  |  |  | 			var cookie = parts.join('='); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (key && key === name) { | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 				// If second argument (value) is a function it's a converter...
 | 
					
						
							|  |  |  | 				result = read(cookie, value); | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Prevent storing a cookie that we couldn't decode.
 | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 			if (!key && (cookie = read(cookie)) !== undefined) { | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 				result[name] = cookie; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return result; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config.defaults = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	$.removeCookie = function (key, options) { | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 		if ($.cookie(key) === undefined) { | 
					
						
							|  |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-03-07 01:00:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Must not alter options, thus extending a fresh object...
 | 
					
						
							|  |  |  | 		$.cookie(key, '', $.extend({}, options, { expires: -1 })); | 
					
						
							|  |  |  | 		return !$.cookie(key); | 
					
						
							| 
									
										
										
										
											2013-09-14 12:58:03 +02:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | })); |