Vergleich jscripts/jquery.plugins.js - 1.8.1 - 1.8.26

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 1Zeile 1
/**

/**

 * jGrowl 1.3.0

 * jGrowl 1.4.5

 *
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Written by Stan Lemon <stosh1985@gmail.com>

 *
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Written by Stan Lemon <stosh1985@gmail.com>

 * Last updated: 2014.04.18

 * Last updated: 2015.02.01

 */
(function($) {

 */
(function($) {

	/** Compatibility holdover for 1.9 to check IE6 **/
var $ie6 = (function(){
return false === $.support.boxModel && $.support.objectAll && $.support.leadingWhitespace;
})();


 
	/** jGrowl Wrapper - Establish a base jGrowl Container for compatibility with older releases. **/
$.jGrowl = function( m , o ) {
// To maintain compatibility with older version that only supported one instance we'll create the base container.

	/** jGrowl Wrapper - Establish a base jGrowl Container for compatibility with older releases. **/
$.jGrowl = function( m , o ) {
// To maintain compatibility with older version that only supported one instance we'll create the base container.

		if ( $('#jGrowl').size() === 0 )
$('<div id="jGrowl"></div>').addClass( (o && o.position) ? o.position : $.jGrowl.defaults.position ).appendTo('body');


		if ( $('#jGrowl').length === 0 )
$('<div id="jGrowl"></div>').addClass( (o && o.position) ? o.position : $.jGrowl.defaults.position ).appendTo( (o && o.appendTo) ? o.appendTo : $.jGrowl.defaults.appendTo );


		// Create a notification on the container.
$('#jGrowl').jGrowl(m,o);
};


		// Create a notification on the container.
$('#jGrowl').jGrowl(m,o);
};






	/** Raise jGrowl Notification on a jGrowl Container **/
$.fn.jGrowl = function( m , o ) {

	/** Raise jGrowl Notification on a jGrowl Container **/
$.fn.jGrowl = function( m , o ) {

 
		// Short hand for passing in just an object to this method
if ( o === undefined && $.isPlainObject(m) ) {
o = m;
m = o.message;
}


		if ( $.isFunction(this.each) ) {
var args = arguments;


		if ( $.isFunction(this.each) ) {
var args = arguments;


Zeile 55Zeile 56
			group:				'',
sticky: false,
position: 'top-right',

			group:				'',
sticky: false,
position: 'top-right',

 
			appendTo:			'body',

			glue:				'after',
theme: 'default',
themeState: 'highlight',

			glue:				'after',
theme: 'default',
themeState: 'highlight',

Zeile 73Zeile 75
			open:				function() {},
beforeClose: function() {},
close: function() {},

			open:				function() {},
beforeClose: function() {},
close: function() {},

 
			click:				function() {},

			animateOpen:		{
opacity: 'show'
},

			animateOpen:		{
opacity: 'show'
},

Zeile 113Zeile 116
			o.themeState = (o.themeState === '') ? '' : 'ui-state-' + o.themeState;

var notification = $('<div/>')

			o.themeState = (o.themeState === '') ? '' : 'ui-state-' + o.themeState;

var notification = $('<div/>')

				.addClass('jGrowl-notification ' + o.themeState + ' ui-corner-all' + ((o.group !== undefined && o.group !== '') ? ' ' + o.group : ''))
.append($('<div/>').addClass('jGrowl-close').html(o.closeTemplate))

				.addClass('jGrowl-notification alert ' + o.themeState + ' ui-corner-all' + ((o.group !== undefined && o.group !== '') ? ' ' + o.group : ''))
.append($('<button/>').addClass('jGrowl-close').html(o.closeTemplate))

				.append($('<div/>').addClass('jGrowl-header').html(o.header))
.append($('<div/>').addClass('jGrowl-message').html(message))

				.append($('<div/>').addClass('jGrowl-header').html(o.header))
.append($('<div/>').addClass('jGrowl-message').html(message))

				.data("jGrowl", o).addClass(o.theme).children('div.jGrowl-close').bind("click.jGrowl", function() {

				.data("jGrowl", o).addClass(o.theme).children('.jGrowl-close').bind("click.jGrowl", function() {

					$(this).parent().trigger('jGrowl.beforeClose');

					$(this).parent().trigger('jGrowl.beforeClose');

 
					return false;

				})
.parent();


				})
.parent();






			/** Notification Actions **/
$(notification).bind("mouseover.jGrowl", function() {

			/** Notification Actions **/
$(notification).bind("mouseover.jGrowl", function() {

				$('div.jGrowl-notification', self.element).data("jGrowl.pause", true);

				$('.jGrowl-notification', self.element).data("jGrowl.pause", true);

			}).bind("mouseout.jGrowl", function() {

			}).bind("mouseout.jGrowl", function() {

				$('div.jGrowl-notification', self.element).data("jGrowl.pause", false);

				$('.jGrowl-notification', self.element).data("jGrowl.pause", false);

			}).bind('jGrowl.beforeOpen', function() {
if ( o.beforeOpen.apply( notification , [notification,message,o,self.element] ) !== false ) {
$(this).trigger('jGrowl.open');

			}).bind('jGrowl.beforeOpen', function() {
if ( o.beforeOpen.apply( notification , [notification,message,o,self.element] ) !== false ) {
$(this).trigger('jGrowl.open');

Zeile 135Zeile 139
			}).bind('jGrowl.open', function() {
if ( o.open.apply( notification , [notification,message,o,self.element] ) !== false ) {
if ( o.glue == 'after' ) {

			}).bind('jGrowl.open', function() {
if ( o.open.apply( notification , [notification,message,o,self.element] ) !== false ) {
if ( o.glue == 'after' ) {

						$('div.jGrowl-notification:last', self.element).after(notification);

						$('.jGrowl-notification:last', self.element).after(notification);

					} else {

					} else {

						$('div.jGrowl-notification:first', self.element).before(notification);

						$('.jGrowl-notification:first', self.element).before(notification);

					}

$(this).animate(o.animateOpen, o.openDuration, o.easing, function() {

					}

$(this).animate(o.animateOpen, o.openDuration, o.easing, function() {

Zeile 145Zeile 149
						if ($.support.opacity === false)
this.style.removeAttribute('filter');


						if ($.support.opacity === false)
this.style.removeAttribute('filter');


						if ( $(this).data("jGrowl") !== null ) // Happens when a notification is closing before it's open.

						if ( $(this).data("jGrowl") !== null && typeof $(this).data("jGrowl") !== 'undefined') // Happens when a notification is closing before it's open.

							$(this).data("jGrowl").created = new Date();

							$(this).data("jGrowl").created = new Date();





						$(this).trigger('jGrowl.afterOpen');
});
}
}).bind('jGrowl.afterOpen', function() {
o.afterOpen.apply( notification , [notification,message,o,self.element] );

						$(this).trigger('jGrowl.afterOpen');
});
}
}).bind('jGrowl.afterOpen', function() {
o.afterOpen.apply( notification , [notification,message,o,self.element] );

 
			}).bind('click', function() {
o.click.apply( notification, [notification,message,o,self.element] );

			}).bind('jGrowl.beforeClose', function() {
if ( o.beforeClose.apply( notification , [notification,message,o,self.element] ) !== false )
$(this).trigger('jGrowl.close');

			}).bind('jGrowl.beforeClose', function() {
if ( o.beforeClose.apply( notification , [notification,message,o,self.element] ) !== false )
$(this).trigger('jGrowl.close');

Zeile 173Zeile 179
			if ( o.corners !== '' && $.fn.corner !== undefined ) $(notification).corner( o.corners );

/** Add a Global Closer if more than one notification exists **/

			if ( o.corners !== '' && $.fn.corner !== undefined ) $(notification).corner( o.corners );

/** Add a Global Closer if more than one notification exists **/

			if ($('div.jGrowl-notification:parent', self.element).size() > 1 &&
$('div.jGrowl-closer', self.element).size() === 0 && this.defaults.closer !== false ) {

			if ($('.jGrowl-notification:parent', self.element).length > 1 &&
$('.jGrowl-closer', self.element).length === 0 && this.defaults.closer !== false ) {

				$(this.defaults.closerTemplate).addClass('jGrowl-closer ' + this.defaults.themeState + ' ui-corner-all').addClass(this.defaults.theme)
.appendTo(self.element).animate(this.defaults.animateOpen, this.defaults.speed, this.defaults.easing)
.bind("click.jGrowl", function() {

				$(this.defaults.closerTemplate).addClass('jGrowl-closer ' + this.defaults.themeState + ' ui-corner-all').addClass(this.defaults.theme)
.appendTo(self.element).animate(this.defaults.animateOpen, this.defaults.speed, this.defaults.easing)
.bind("click.jGrowl", function() {

Zeile 189Zeile 195

/** Update the jGrowl Container, removing old jGrowl notifications **/
update: function() {


/** Update the jGrowl Container, removing old jGrowl notifications **/
update: function() {

			$(this.element).find('div.jGrowl-notification:parent').each( function() {

			$(this.element).find('.jGrowl-notification:parent').each( function() {

				if ($(this).data("jGrowl") !== undefined && $(this).data("jGrowl").created !== undefined &&
($(this).data("jGrowl").created.getTime() + parseInt($(this).data("jGrowl").life, 10)) < (new Date()).getTime() &&
$(this).data("jGrowl").sticky !== true &&

				if ($(this).data("jGrowl") !== undefined && $(this).data("jGrowl").created !== undefined &&
($(this).data("jGrowl").created.getTime() + parseInt($(this).data("jGrowl").life, 10)) < (new Date()).getTime() &&
$(this).data("jGrowl").sticky !== true &&

Zeile 197Zeile 203

// Pause the notification, lest during the course of animation another close event gets called.
$(this).trigger('jGrowl.beforeClose');


// Pause the notification, lest during the course of animation another close event gets called.
$(this).trigger('jGrowl.beforeClose');

				}

				}

			});

if (this.notifications.length > 0 &&

			});

if (this.notifications.length > 0 &&

				(this.defaults.pool === 0 || $(this.element).find('div.jGrowl-notification:parent').size() < this.defaults.pool) )

				(this.defaults.pool === 0 || $(this.element).find('.jGrowl-notification:parent').length < this.defaults.pool) )

				this.render( this.notifications.shift() );


				this.render( this.notifications.shift() );


			if ($(this.element).find('div.jGrowl-notification:parent').size() < 2 ) {
$(this.element).find('div.jGrowl-closer').animate(this.defaults.animateClose, this.defaults.speed, this.defaults.easing, function() {

			if ($(this.element).find('.jGrowl-notification:parent').length < 2 ) {
$(this.element).find('.jGrowl-closer').animate(this.defaults.animateClose, this.defaults.speed, this.defaults.easing, function() {

					$(this).remove();
});
}

					$(this).remove();
});
}

Zeile 215Zeile 221
		startup: function(e) {
this.element = $(e).addClass('jGrowl').append('<div class="jGrowl-notification"></div>');
this.interval = setInterval( function() {

		startup: function(e) {
this.element = $(e).addClass('jGrowl').append('<div class="jGrowl-notification"></div>');
this.interval = setInterval( function() {

				$(e).data('jGrowl.instance').update();





				// some error in chage ^^
var instance = $(e).data('jGrowl.instance');
if (undefined !== instance) {
instance.update();
}

			}, parseInt(this.defaults.check, 10));

			}, parseInt(this.defaults.check, 10));


if ($ie6) {
$(this.element).addClass('ie6');
}
},

		},






/** Shutdown jGrowl, removing it and clearing the interval **/
shutdown: function() {
$(this.element).removeClass('jGrowl')


/** Shutdown jGrowl, removing it and clearing the interval **/
shutdown: function() {
$(this.element).removeClass('jGrowl')

				.find('div.jGrowl-notification').trigger('jGrowl.close')

				.find('.jGrowl-notification').trigger('jGrowl.close')

				.parent().empty()
;


				.parent().empty()
;


Zeile 234Zeile 240
		},

close: function() {

		},

close: function() {

			$(this.element).find('div.jGrowl-notification').each(function(){

			$(this.element).find('.jGrowl-notification').each(function(){

				$(this).trigger('jGrowl.beforeClose');
});
}

				$(this).trigger('jGrowl.beforeClose');
});
}

Zeile 247Zeile 253

/*
A simple jQuery modal (http://github.com/kylefox/jquery-modal)


/*
A simple jQuery modal (http://github.com/kylefox/jquery-modal)

    Version 0.5.5

    Version 0.8.0

*/

*/

(function($) {

 




  var current = null;

























(function (factory) {
// Making your jQuery plugin work better with npm tools
// http://blog.npmjs.org/post/112712169830/making-your-jquery-plugin-work-better-with-npm
if(typeof module === "object" && typeof module.exports === "object") {
factory(require("jquery"), window, document);
}
else {
factory(jQuery, window, document);
}
}(function($, window, document, undefined) {

var modals = [],
getCurrent = function() {
return modals.length ? modals[modals.length - 1] : null;
},
selectCurrent = function() {
var i,
selected = false;
for (i=modals.length-1; i>=0; i--) {
if (modals[i].$blocker) {
modals[i].$blocker.toggleClass('current',!selected).toggleClass('behind',selected);
selected = true;
}
}
};


$.modal = function(el, options) {


$.modal = function(el, options) {

    $.modal.close(); // Close any open modals.

 
    var remove, target;
this.$body = $('body');
this.options = $.extend({}, $.modal.defaults, options);
this.options.doFade = !isNaN(parseInt(this.options.fadeDuration, 10));

    var remove, target;
this.$body = $('body');
this.options = $.extend({}, $.modal.defaults, options);
this.options.doFade = !isNaN(parseInt(this.options.fadeDuration, 10));

 
    this.$blocker = null;
if (this.options.closeExisting)
while ($.modal.isActive())
$.modal.close(); // Close any open modals.
modals.push(this);

    if (el.is('a')) {
target = el.attr('href');
//Select element by id from href
if (/^#/.test(target)) {
this.$elm = $(target);
if (this.$elm.length !== 1) return null;

    if (el.is('a')) {
target = el.attr('href');
//Select element by id from href
if (/^#/.test(target)) {
this.$elm = $(target);
if (this.$elm.length !== 1) return null;

 
        this.$body.append(this.$elm);

        this.open();
//AJAX
} else {

        this.open();
//AJAX
} else {

Zeile 274Zeile 308
        this.showSpinner();
el.trigger($.modal.AJAX_SEND);
$.get(target).done(function(html) {

        this.showSpinner();
el.trigger($.modal.AJAX_SEND);
$.get(target).done(function(html) {

          if (!current) return;

          if (!$.modal.isActive()) return;

          el.trigger($.modal.AJAX_SUCCESS);

          el.trigger($.modal.AJAX_SUCCESS);

 
          var current = getCurrent();

          current.$elm.empty().append(html).on($.modal.CLOSE, remove);
current.hideSpinner();
current.open();
el.trigger($.modal.AJAX_COMPLETE);
}).fail(function() {
el.trigger($.modal.AJAX_FAIL);

          current.$elm.empty().append(html).on($.modal.CLOSE, remove);
current.hideSpinner();
current.open();
el.trigger($.modal.AJAX_COMPLETE);
}).fail(function() {
el.trigger($.modal.AJAX_FAIL);

 
          var current = getCurrent();

          current.hideSpinner();

          current.hideSpinner();

 
          modals.pop(); // remove expected modal from the list

          el.trigger($.modal.AJAX_COMPLETE);
});
}
} else {
this.$elm = el;

          el.trigger($.modal.AJAX_COMPLETE);
});
}
} else {
this.$elm = el;

 
      this.$body.append(this.$elm);

      this.open();
}
};

      this.open();
}
};

Zeile 297Zeile 335

open: function() {
var m = this;


open: function() {
var m = this;

 
      this.block();

      if(this.options.doFade) {

      if(this.options.doFade) {

        this.block();

 
        setTimeout(function() {
m.show();
}, this.options.fadeDuration * this.options.fadeDelay);
} else {

        setTimeout(function() {
m.show();
}, this.options.fadeDuration * this.options.fadeDelay);
} else {

        this.block();

 
        this.show();
}

        this.show();
}

      if (this.options.escapeClose) {
$(document).on('keydown.modal', function(event) {
if (event.which == 27) $.modal.close();






      $(document).off('keydown.modal').on('keydown.modal', function(event) {
var current = getCurrent();
if (event.which == 27 && current.options.escapeClose) current.close();
});
if (this.options.clickClose)
this.$blocker.on('click',function(e) {
if (e.target==this)
$.modal.close();

        });

        });

      }
if (this.options.clickClose) this.blocker.click($.modal.close);

 
    },

close: function() {

    },

close: function() {

 
      modals.pop();

      this.unblock();
this.hide();

      this.unblock();
this.hide();

	  // Deletes the element (multi-modal feature: e.g. when you click on multiple report buttons, you will want to see different content for each)
if (!this.options.keepelement)
this.$elm.remove();
$(document).off('keydown.modal');

      if (!$.modal.isActive())
$(document).off('keydown.modal');



    },

block: function() {

    },

block: function() {

      var initialOpacity = this.options.doFade ? 0 : this.options.opacity;

 
      this.$elm.trigger($.modal.BEFORE_BLOCK, [this._ctx()]);

      this.$elm.trigger($.modal.BEFORE_BLOCK, [this._ctx()]);

      this.blocker = $('<div class="jquery-modal blocker"></div>').css({
top: 0, right: 0, bottom: 0, left: 0,
width: "100%", height: "100%",
position: "fixed",
zIndex: this.options.zIndex,
background: this.options.overlay,
opacity: initialOpacity
});
this.$body.append(this.blocker);

      this.$body.css('overflow','hidden');
this.$blocker = $('<div class="jquery-modal blocker current"></div>').appendTo(this.$body);
selectCurrent();







      if(this.options.doFade) {

      if(this.options.doFade) {

        this.blocker.animate({opacity: this.options.opacity}, this.options.fadeDuration);

        this.$blocker.css('opacity',0).animate({opacity: 1}, this.options.fadeDuration);

      }
this.$elm.trigger($.modal.BLOCK, [this._ctx()]);

      }
this.$elm.trigger($.modal.BLOCK, [this._ctx()]);

    },

    },





    unblock: function() {
if(this.options.doFade) {
this.blocker.fadeOut(this.options.fadeDuration, function() {
$(this).remove();
});
} else {
this.blocker.remove();




    unblock: function(now) {
if (!now && this.options.doFade)
this.$blocker.fadeOut(this.options.fadeDuration, this.unblock.bind(this,true));
else {
this.$blocker.children().appendTo(this.$body);
this.$blocker.remove();
this.$blocker = null;
selectCurrent();
if (!$.modal.isActive())
this.$body.css('overflow','');

      }
},


      }
},


Zeile 356Zeile 391
      if (this.options.showClose) {
this.closeButton = $('<a href="#close-modal" rel="modal:close" class="close-modal ' + this.options.closeClass + '">' + this.options.closeText + '</a>');
this.$elm.append(this.closeButton);

      if (this.options.showClose) {
this.closeButton = $('<a href="#close-modal" rel="modal:close" class="close-modal ' + this.options.closeClass + '">' + this.options.closeText + '</a>');
this.$elm.append(this.closeButton);

      }
this.$elm.addClass(this.options.modalClass + ' current');
this.center();

      }
this.$elm.addClass(this.options.modalClass).appendTo(this.$blocker);


      if(this.options.doFade) {

      if(this.options.doFade) {

        this.$elm.fadeIn(this.options.fadeDuration);

        this.$elm.css('opacity',0).show().animate({opacity: 1}, this.options.fadeDuration);

      } else {
this.$elm.show();
}

      } else {
this.$elm.show();
}

Zeile 370Zeile 404
    hide: function() {
this.$elm.trigger($.modal.BEFORE_CLOSE, [this._ctx()]);
if (this.closeButton) this.closeButton.remove();

    hide: function() {
this.$elm.trigger($.modal.BEFORE_CLOSE, [this._ctx()]);
if (this.closeButton) this.closeButton.remove();

      this.$elm.removeClass('current');


      var _this = this;


      if(this.options.doFade) {

      if(this.options.doFade) {

        this.$elm.fadeOut(this.options.fadeDuration);



        this.$elm.fadeOut(this.options.fadeDuration, function () {
_this.$elm.trigger($.modal.AFTER_CLOSE, [_this._ctx()]);
});

      } else {

      } else {

        this.$elm.hide();



        this.$elm.hide(0, function () {
_this.$elm.trigger($.modal.AFTER_CLOSE, [_this._ctx()]);
});

      }
this.$elm.trigger($.modal.CLOSE, [this._ctx()]);
},

      }
this.$elm.trigger($.modal.CLOSE, [this._ctx()]);
},

Zeile 390Zeile 427

hideSpinner: function() {
if (this.spinner) this.spinner.remove();


hideSpinner: function() {
if (this.spinner) this.spinner.remove();

    },

center: function() {
this.$elm.css({
position: 'fixed',
top: "50%",
left: "50%",
marginTop: - (this.$elm.outerHeight() / 2),
marginLeft: - (this.$elm.outerWidth() / 2),
zIndex: this.options.zIndex + 1
});

 
    },

//Return context for custom events
_ctx: function() {

    },

//Return context for custom events
_ctx: function() {

      return { elm: this.$elm, blocker: this.blocker, options: this.options };

      return { elm: this.$elm, $blocker: this.$blocker, options: this.options };

    }
};

    }
};


//resize is alias for center for now
$.modal.prototype.resize = $.modal.prototype.center;

 

$.modal.close = function(event) {


$.modal.close = function(event) {

    if (!current) return;

    if (!$.modal.isActive()) return;

    if (event) event.preventDefault();

    if (event) event.preventDefault();

 
    var current = getCurrent();

    current.close();

    current.close();

    var that = current.$elm;
current = null;
return that;
};

$.modal.resize = function() {
if (!current) return;
current.resize();

    return current.$elm;








  };

// Returns if there currently is an active modal
$.modal.isActive = function () {

  };

// Returns if there currently is an active modal
$.modal.isActive = function () {

    return current ? true : false;

    return modals.length > 0;

  }

  }

 

$.modal.getCurrent = getCurrent;


$.modal.defaults = {


$.modal.defaults = {

    overlay: "#000",
opacity: 0.75,
zIndex: 1,

    closeExisting: true,



    escapeClose: true,
clickClose: true,
closeText: 'Close',

    escapeClose: true,
clickClose: true,
closeText: 'Close',

Zeile 444Zeile 461
    showSpinner: true,
showClose: true,
fadeDuration: null, // Number of milliseconds the fade animation takes.

    showSpinner: true,
showClose: true,
fadeDuration: null, // Number of milliseconds the fade animation takes.

    fadeDelay: 1.0,        // Point during the overlay's fade-in that the modal begins to fade in (.5 = 50%, 1.5 = 150%, etc.)
keepelement: false // Added by Pirata Nervo: this allows modal elements to be kept on closing when the HTML is present in the same template as the jQuery code (e.g. login modal)
};

    fadeDelay: 1.0        // Point during the overlay's fade-in that the modal begins to fade in (.5 = 50%, 1.5 = 150%, etc.)
};



// Event constants
$.modal.BEFORE_BLOCK = 'modal:before-block';


// Event constants
$.modal.BEFORE_BLOCK = 'modal:before-block';

Zeile 455Zeile 471
  $.modal.OPEN = 'modal:open';
$.modal.BEFORE_CLOSE = 'modal:before-close';
$.modal.CLOSE = 'modal:close';

  $.modal.OPEN = 'modal:open';
$.modal.BEFORE_CLOSE = 'modal:before-close';
$.modal.CLOSE = 'modal:close';

 
  $.modal.AFTER_CLOSE = 'modal:after-close';

  $.modal.AJAX_SEND = 'modal:ajax:send';
$.modal.AJAX_SUCCESS = 'modal:ajax:success';
$.modal.AJAX_FAIL = 'modal:ajax:fail';
$.modal.AJAX_COMPLETE = 'modal:ajax:complete';

  $.modal.AJAX_SEND = 'modal:ajax:send';
$.modal.AJAX_SUCCESS = 'modal:ajax:success';
$.modal.AJAX_FAIL = 'modal:ajax:fail';
$.modal.AJAX_COMPLETE = 'modal:ajax:complete';





  $.fn.modal = function(options){
if (this.length === 1) {

  $.fn.modal = function(options){
if (this.length === 1) {

      current = new $.modal(this, options);

      new $.modal(this, options);

    }
return this;
};

    }
return this;
};





  // Automatically bind links with rel="modal:close" to, well, close the modal.
$(document).on('click.modal', 'a[rel="modal:close"]', $.modal.close);
$(document).on('click.modal', 'a[rel="modal:open"]', function(event) {
event.preventDefault();
$(this).modal();
});

  // Automatically bind links with rel="modal:close" to, well, close the modal.
$(document).on('click.modal', 'a[rel="modal:close"]', $.modal.close);
$(document).on('click.modal', 'a[rel="modal:open"]', function(event) {
event.preventDefault();
$(this).modal();
});

})(jQuery);


}));



/*
Conversion of 1.6.x popup_menu.js


/*
Conversion of 1.6.x popup_menu.js

Zeile 546Zeile 562
		return this.each(function()
{
var popup = new PopupMenu(this, close_in_popupmenu);

		return this.each(function()
{
var popup = new PopupMenu(this, close_in_popupmenu);

			$(this).click(popup.open);

			$(this).on('click',popup.open);

		});
}

		});
}

})(jQuery);

/*! jQuery-Impromptu - v5.2.4 - 2014-05-26
* http://trentrichardson.com/Impromptu
* Copyright (c) 2014 Trent Richardson; Licensed MIT */
(function($) {
"use strict";

/**
* setDefaults - Sets the default options
* @param message String/Object - String of html or Object of states
* @param options Object - Options to set the prompt
* @return jQuery - container with overlay and prompt
*/
$.prompt = function(message, options) {
// only for backwards compat, to be removed in future version
if(options !== undefined && options.classes !== undefined && typeof options.classes === 'string'){
options = { box: options.classes };
}

$.prompt.options = $.extend({},$.prompt.defaults,options);
$.prompt.currentPrefix = $.prompt.options.prefix;

// Be sure any previous timeouts are destroyed
if($.prompt.timeout){
clearTimeout($.prompt.timeout);
}
$.prompt.timeout = false;

var opts = $.prompt.options,
$body = $(document.body),
$window = $(window);

//build the box and fade
var msgbox = '<div class="'+ $.prompt.options.prefix +'box '+ opts.classes.box +'">';
if(opts.useiframe && ($('object, applet').length > 0)) {
msgbox += '<iframe src="javascript:false;" style="display:block;position:absolute;z-index:-1;" class="'+ opts.prefix +'fade '+ opts.classes.fade +'"></iframe>';
} else {
msgbox +='<div class="'+ opts.prefix +'fade '+ opts.classes.fade +'"></div>';
}
msgbox += '<div class="'+ opts.prefix +' '+ opts.classes.prompt +'">'+
'<form action="javascript:false;" onsubmit="return false;" class="'+ opts.prefix +'form '+ opts.classes.form +'">'+
'<div class="'+ opts.prefix +'close '+ opts.classes.close +'">'+ opts.closeText +'</div>'+
'<div class="'+ opts.prefix +'states"></div>'+
'</form>'+
'</div>'+
'</div>';

$.prompt.jqib = $(msgbox).appendTo($body);
$.prompt.jqi = $.prompt.jqib.children('.'+ opts.prefix);//.data('jqi',opts);
$.prompt.jqif = $.prompt.jqib.children('.'+ opts.prefix +'fade');

//if a string was passed, convert to a single state
if(message.constructor === String){
message = {
state0: {
title: opts.title,
html: message,
buttons: opts.buttons,
position: opts.position,
focus: opts.focus,
defaultButton: opts.defaultButton,
submit: opts.submit
}
};
}

//build the states
$.prompt.options.states = {};
var k,v;
for(k in message){
v = $.extend({},$.prompt.defaults.state,{name:k},message[k]);
$.prompt.addState(v.name, v);

if($.prompt.currentStateName === ''){
$.prompt.currentStateName = v.name;
}
}

//Events
$.prompt.jqi.on('click', '.'+ opts.prefix +'buttons button', function(e){
var $t = $(this),
$state = $t.parents('.'+ opts.prefix +'state'),
stateobj = $.prompt.options.states[$state.data('jqi-name')],
msg = $state.children('.'+ opts.prefix +'message'),
clicked = stateobj.buttons[$t.text()] || stateobj.buttons[$t.html()],
forminputs = {};

// if for some reason we couldn't get the value
if(clicked === undefined){
for(var i in stateobj.buttons){
if(stateobj.buttons[i].title === $t.text() || stateobj.buttons[i].title === $t.html()){
clicked = stateobj.buttons[i].value;
}
}
}

//collect all form element values from all states.
$.each($.prompt.jqi.children('form').serializeArray(),function(i,obj){
if (forminputs[obj.name] === undefined) {
forminputs[obj.name] = obj.value;
} else if (typeof forminputs[obj.name] === Array || typeof forminputs[obj.name] === 'object') {
forminputs[obj.name].push(obj.value);
} else {
forminputs[obj.name] = [forminputs[obj.name],obj.value];
}
});

// trigger an event
var promptsubmite = new $.Event('impromptu:submit');
promptsubmite.stateName = stateobj.name;
promptsubmite.state = $state;
$state.trigger(promptsubmite, [clicked, msg, forminputs]);

if(!promptsubmite.isDefaultPrevented()){
$.prompt.close(true, clicked,msg,forminputs);
}
});

// if the fade is clicked blink the prompt
var fadeClicked = function(){
if(opts.persistent){
var offset = (opts.top.toString().indexOf('%') >= 0? ($window.height()*(parseInt(opts.top,10)/100)) : parseInt(opts.top,10)),
top = parseInt($.prompt.jqi.css('top').replace('px',''),10) - offset;

//$window.scrollTop(top);
$('html,body').animate({ scrollTop: top }, 'fast', function(){
var i = 0;
$.prompt.jqib.addClass(opts.prefix +'warning');
var intervalid = setInterval(function(){
$.prompt.jqib.toggleClass(opts.prefix +'warning');
if(i++ > 1){
clearInterval(intervalid);
$.prompt.jqib.removeClass(opts.prefix +'warning');
}
}, 100);
});
}
else {
$.prompt.close(true);
}
};

// listen for esc or tab keys
var keyDownEventHandler = function(e){
var key = (window.event) ? event.keyCode : e.keyCode;

//escape key closes
if(key === 27) {
fadeClicked();
}

//enter key pressed trigger the default button if its not on it, ignore if it is a textarea
if(key === 13){
var $defBtn = $.prompt.getCurrentState().find('.'+ opts.prefix +'defaultbutton');
var $tgt = $(e.target);

if($tgt.is('textarea,.'+opts.prefix+'button') === false && $defBtn.length > 0){
e.preventDefault();
$defBtn.click();
}
}

//constrain tabs, tabs should iterate through the state and not leave
if (key === 9){
var $inputels = $('input,select,textarea,button',$.prompt.getCurrentState());
var fwd = !e.shiftKey && e.target === $inputels[$inputels.length-1];
var back = e.shiftKey && e.target === $inputels[0];
if (fwd || back) {
setTimeout(function(){
if (!$inputels){
return;
}
var el = $inputels[back===true ? $inputels.length-1 : 0];

if (el){
el.focus();
}
},10);
return false;
}
}
};

$.prompt.position();
$.prompt.style();

$.prompt.jqif.click(fadeClicked);
$window.resize({animate:false}, $.prompt.position);
$.prompt.jqi.find('.'+ opts.prefix +'close').click($.prompt.close);
$.prompt.jqib.on("keydown",keyDownEventHandler)
.on('impromptu:loaded', opts.loaded)
.on('impromptu:close', opts.close)
.on('impromptu:statechanging', opts.statechanging)
.on('impromptu:statechanged', opts.statechanged);

// Show it
$.prompt.jqif[opts.show](opts.overlayspeed);
$.prompt.jqi[opts.show](opts.promptspeed, function(){

var $firstState = $.prompt.jqi.find('.'+ opts.prefix +'states .'+ opts.prefix +'state').eq(0);
$.prompt.goToState($firstState.data('jqi-name'));

$.prompt.jqib.trigger('impromptu:loaded');
});

// Timeout
if(opts.timeout > 0){
$.prompt.timeout = setTimeout(function(){ $.prompt.close(true); },opts.timeout);
}

return $.prompt.jqib;
};

$.prompt.defaults = {
prefix:'jqi',
classes: {
box: '',
fade: '',
prompt: '',
form: '',
close: '',
title: '',
message: '',
buttons: '',
button: '',
defaultButton: ''
},
title: '',
closeText: '&times;',
buttons: {
Ok: true
},
loaded: function(e){},
submit: function(e,v,m,f){},
close: function(e,v,m,f){},
statechanging: function(e, from, to){},
statechanged: function(e, to){},
opacity: 0.6,
zIndex: 999,
overlayspeed: 'slow',
promptspeed: 'fast',
show: 'fadeIn',
focus: 0,
defaultButton: 0,
useiframe: false,
top: '15%',
position: {
container: null,
x: null,
y: null,
arrow: null,
width: null
},
persistent: true,
timeout: 0,
states: {},
state: {
name: null,
title: '',
html: '',
buttons: {
Ok: true
},
focus: 0,
defaultButton: 0,
position: {
container: null,
x: null,
y: null,
arrow: null,
width: null
},
submit: function(e,v,m,f){
return true;
}
}
};

/**
* currentPrefix String - At any time this show be the prefix
* of the current prompt ex: "jqi"
*/
$.prompt.currentPrefix = $.prompt.defaults.prefix;

/**
* currentStateName String - At any time this is the current state
* of the current prompt ex: "state0"
*/
$.prompt.currentStateName = "";

/**
* setDefaults - Sets the default options
* @param o Object - Options to set as defaults
* @return void
*/
$.prompt.setDefaults = function(o) {
$.prompt.defaults = $.extend({}, $.prompt.defaults, o);
};

/**
* setStateDefaults - Sets the default options for a state
* @param o Object - Options to set as defaults
* @return void
*/
$.prompt.setStateDefaults = function(o) {
$.prompt.defaults.state = $.extend({}, $.prompt.defaults.state, o);
};

/**
* position - Repositions the prompt (Used internally)
* @return void
*/
$.prompt.position = function(e){
var restoreFx = $.fx.off,
$state = $.prompt.getCurrentState(),
stateObj = $.prompt.options.states[$state.data('jqi-name')],
pos = stateObj? stateObj.position : undefined,
$window = $(window),
bodyHeight = document.body.scrollHeight, //$(document.body).outerHeight(true),
windowHeight = $(window).height(),
documentHeight = $(document).height(),
height = bodyHeight > windowHeight ? bodyHeight : windowHeight,
top = parseInt($window.scrollTop(),10) + ($.prompt.options.top.toString().indexOf('%') >= 0?
(windowHeight*(parseInt($.prompt.options.top,10)/100)) : parseInt($.prompt.options.top,10));

// when resizing the window turn off animation
if(e !== undefined && e.data.animate === false){
$.fx.off = true;
}

$.prompt.jqib.css({
position: "absolute",
height: height,
width: "100%",
top: 0,
left: 0,
right: 0,
bottom: 0
});
$.prompt.jqif.css({
position: "fixed",
height: height,
width: "100%",
top: 0,
left: 0,
right: 0,
bottom: 0
});

// tour positioning
if(pos && pos.container){
var offset = $(pos.container).offset();

if($.isPlainObject(offset) && offset.top !== undefined){
$.prompt.jqi.css({
position: "absolute"
});
$.prompt.jqi.animate({
top: offset.top + pos.y,
left: offset.left + pos.x,
marginLeft: 0,
width: (pos.width !== undefined)? pos.width : null
});
top = (offset.top + pos.y) - ($.prompt.options.top.toString().indexOf('%') >= 0? (windowHeight*(parseInt($.prompt.options.top,10)/100)) : parseInt($.prompt.options.top,10));
$('html,body').animate({ scrollTop: top }, 'slow', 'swing', function(){});
}
}
// custom state width animation
else if(pos && pos.width){
$.prompt.jqi.css({
position: "absolute",
left: '50%'
});
$.prompt.jqi.animate({
top: pos.y || top,
left: pos.x || '50%',
marginLeft: ((pos.width/2)*-1),
width: pos.width
});
}
// standard prompt positioning
else{
$.prompt.jqi.css({
position: "absolute",
top: top,
left: '50%',//$window.width()/2,
marginLeft: (($.prompt.jqi.outerWidth(false)/2)*-1)
});
}

// restore fx settings
if(e !== undefined && e.data.animate === false){
$.fx.off = restoreFx;
}
};

/**
* style - Restyles the prompt (Used internally)
* @return void
*/
$.prompt.style = function(){
$.prompt.jqif.css({
zIndex: $.prompt.options.zIndex,
display: "none",
opacity: $.prompt.options.opacity
});
$.prompt.jqi.css({
zIndex: $.prompt.options.zIndex+1,
display: "none"
});
$.prompt.jqib.css({
zIndex: $.prompt.options.zIndex
});
};

/**
* get - Get the prompt
* @return jQuery - the prompt
*/
$.prompt.get = function(state) {
return $('.'+ $.prompt.currentPrefix);
};

/**
* addState - Injects a state into the prompt
* @param statename String - Name of the state
* @param stateobj Object - options for the state
* @param afterState String - selector of the state to insert after
* @return jQuery - the newly created state
*/
$.prompt.addState = function(statename, stateobj, afterState) {
var state = "",
$state = null,
arrow = "",
title = "",
opts = $.prompt.options,
$jqistates = $('.'+ $.prompt.currentPrefix +'states'),
defbtn,k,v,i=0;

stateobj = $.extend({},$.prompt.defaults.state, {name:statename}, stateobj);

if(stateobj.position.arrow !== null){
arrow = '<div class="'+ opts.prefix + 'arrow '+ opts.prefix + 'arrow'+ stateobj.position.arrow +'"></div>';
}
if(stateobj.title && stateobj.title !== ''){
title = '<div class="lead '+ opts.prefix + 'title '+ opts.classes.title +'">'+ stateobj.title +'</div>';
}
state += '<div id="'+ opts.prefix +'state_'+ statename +'" class="'+ opts.prefix + 'state" data-jqi-name="'+ statename +'" style="display:none;">'+
arrow + title +
'<div class="'+ opts.prefix +'message '+ opts.classes.message +'">' + stateobj.html +'</div>'+
'<div class="'+ opts.prefix +'buttons '+ opts.classes.buttons +'"'+ ($.isEmptyObject(stateobj.buttons)? 'style="display:none;"':'') +'>';

for(k in stateobj.buttons){
v = stateobj.buttons[k],
defbtn = stateobj.focus === i || (isNaN(stateobj.focus) && stateobj.defaultButton === i) ? ($.prompt.currentPrefix + 'defaultbutton ' + opts.classes.defaultButton) : '';

if(typeof v === 'object'){
state += '<button class="'+ opts.classes.button +' '+ $.prompt.currentPrefix + 'button '+ defbtn;

if(typeof v.classes !== "undefined"){
state += ' '+ ($.isArray(v.classes)? v.classes.join(' ') : v.classes) + ' ';
}

state += '" name="' + opts.prefix + '_' + statename + '_button' + v.title.replace(/[^a-z0-9]+/gi,'') + '" id="' + opts.prefix + '_' + statename + '_button' + v.title.replace(/[^a-z0-9]+/gi,'') + '" value="' + v.value + '">' + v.title + '</button>';

} else {
state += '<button class="'+ $.prompt.currentPrefix + 'button '+ opts.classes.button +' '+ defbtn +'" name="' + opts.prefix + '_' + statename + '_button' + k.replace(/[^a-z0-9]+/gi,'') + '" id="' + opts.prefix + '_' + statename + '_button' + k.replace(/[^a-z0-9]+/gi,'') + '" value="' + v + '">' + k + '</button>';

}
i++;
}
state += '</div></div>';

$state = $(state);

$state.on('impromptu:submit', stateobj.submit);

if(afterState !== undefined){
$jqistates.find('#'+ $.prompt.currentPrefix +'state_'+ afterState).after($state);
}
else{
$jqistates.append($state);
}

$.prompt.options.states[statename] = stateobj;

return $state;
};

/**
* removeState - Removes a state from the prompt
* @param state String - Name of the state
* @param newState String - Name of the state to transition to
* @return Boolean - returns true on success, false on failure
*/
$.prompt.removeState = function(state, newState) {
var $state = $.prompt.getState(state),
rm = function(){ $state.remove(); };

if($state.length === 0){
return false;
}

// transition away from it before deleting
if($state.css('display') !== 'none'){
if(newState !== undefined && $.prompt.getState(newState).length > 0){
$.prompt.goToState(newState, false, rm);
}
else if($state.next().length > 0){
$.prompt.nextState(rm);
}
else if($state.prev().length > 0){
$.prompt.prevState(rm);
}
else{
$.prompt.close();
}
}
else{
$state.slideUp('slow', rm);
}

return true;
};

/**
* getState - Get the state by its name
* @param state String - Name of the state
* @return jQuery - the state
*/
$.prompt.getState = function(state) {
return $('#'+ $.prompt.currentPrefix +'state_'+ state);
};
$.prompt.getStateContent = function(state) {
return $.prompt.getState(state);
};

/**
* getCurrentState - Get the current visible state
* @return jQuery - the current visible state
*/
$.prompt.getCurrentState = function() {
return $.prompt.getState($.prompt.getCurrentStateName());
};

/**
* getCurrentStateName - Get the name of the current visible state
* @return String - the current visible state's name
*/
$.prompt.getCurrentStateName = function() {
return $.prompt.currentStateName;
};

/**
* goToState - Goto the specified state
* @param state String - name of the state to transition to
* @param subState Boolean - true to be a sub state within the currently open state
* @param callback Function - called when the transition is complete
* @return jQuery - the newly active state
*/
$.prompt.goToState = function(state, subState, callback) {
var $jqi = $.prompt.get(),
jqiopts = $.prompt.options,
$state = $.prompt.getState(state),
stateobj = jqiopts.states[$state.data('jqi-name')],
promptstatechanginge = new $.Event('impromptu:statechanging');

// subState can be ommitted
if(typeof subState === 'function'){
callback = subState;
subState = false;
}

$.prompt.jqib.trigger(promptstatechanginge, [$.prompt.getCurrentStateName(), state]);

if(!promptstatechanginge.isDefaultPrevented() && $state.length > 0){
$.prompt.jqi.find('.'+ $.prompt.currentPrefix +'parentstate').removeClass($.prompt.currentPrefix +'parentstate');

if(subState){ // hide any open substates
// get rid of any substates
$.prompt.jqi.find('.'+ $.prompt.currentPrefix +'substate').not($state)
.slideUp(jqiopts.promptspeed)
.removeClass('.'+ $.prompt.currentPrefix +'substate')
.find('.'+ $.prompt.currentPrefix +'arrow').hide();

// add parent state class so it can be visible, but blocked
$.prompt.jqi.find('.'+ $.prompt.currentPrefix +'state:visible').addClass($.prompt.currentPrefix +'parentstate');

// add substate class so we know it will be smaller
$state.addClass($.prompt.currentPrefix +'substate');
}
else{ // hide any open states
$.prompt.jqi.find('.'+ $.prompt.currentPrefix +'state').not($state)
.slideUp(jqiopts.promptspeed)
.find('.'+ $.prompt.currentPrefix +'arrow').hide();
}
$.prompt.currentStateName = stateobj.name;

$state.slideDown(jqiopts.promptspeed,function(){
var $t = $(this);

// if focus is a selector, find it, else its button index
if(typeof(stateobj.focus) === 'string'){
$t.find(stateobj.focus).eq(0).focus();
}
else{
$t.find('.'+ $.prompt.currentPrefix +'defaultbutton').focus();
}

$t.find('.'+ $.prompt.currentPrefix +'arrow').show(jqiopts.promptspeed);

if (typeof callback === 'function'){
$.prompt.jqib.on('impromptu:statechanged', callback);
}
$.prompt.jqib.trigger('impromptu:statechanged', [state]);
if (typeof callback === 'function'){
$.prompt.jqib.off('impromptu:statechanged', callback);
}
});
if(!subState){
$.prompt.position();
}
}
return $state;
};

/**
* nextState - Transition to the next state
* @param callback Function - called when the transition is complete
* @return jQuery - the newly active state
*/
$.prompt.nextState = function(callback) {
var $next = $('#'+ $.prompt.currentPrefix +'state_'+ $.prompt.getCurrentStateName()).next();
if($next.length > 0){
$.prompt.goToState( $next.attr('id').replace($.prompt.currentPrefix +'state_',''), callback );
}
return $next;
};

/**
* prevState - Transition to the previous state
* @param callback Function - called when the transition is complete
* @return jQuery - the newly active state
*/
$.prompt.prevState = function(callback) {
var $prev = $('#'+ $.prompt.currentPrefix +'state_'+ $.prompt.getCurrentStateName()).prev();
if($prev.length > 0){
$.prompt.goToState( $prev.attr('id').replace($.prompt.currentPrefix +'state_',''), callback );
}
return $prev;
};

/**
* close - Closes the prompt
* @param callback Function - called when the transition is complete
* @param clicked String - value of the button clicked (only used internally)
* @param msg jQuery - The state message body (only used internally)
* @param forvals Object - key/value pairs of all form field names and values (only used internally)
* @return jQuery - the newly active state
*/
$.prompt.close = function(callCallback, clicked, msg, formvals){
if($.prompt.timeout){
clearTimeout($.prompt.timeout);
$.prompt.timeout = false;
}

if($.prompt.jqib){
$.prompt.jqib.fadeOut('fast',function(){

$.prompt.jqib.trigger('impromptu:close', [clicked,msg,formvals]);

$.prompt.jqib.remove();

$(window).off('resize',$.prompt.position);
});
}
$.prompt.currentStateName = "";
};

/**
* Enable using $('.selector').prompt({});
* This will grab the html within the prompt as the prompt message
*/
$.fn.prompt = function(options){
if(options === undefined){
options = {};
}
if(options.withDataAndEvents === undefined){
options.withDataAndEvents = false;
}

$.prompt($(this).clone(options.withDataAndEvents).html(),options);
};


 
})(jQuery);

/*!

})(jQuery);

/*!

 * jQuery Cookie Plugin v1.3.1
* https://github.com/carhartl/jquery-cookie

 * JavaScript Cookie v2.1.4
* https://github.com/js-cookie/js-cookie

 *

 *

 * Copyright 2013 Klaus Hartl

 * Copyright 2006, 2015 Klaus Hartl & Fagner Brack

 * Released under the MIT license
*/

 * Released under the MIT license
*/

(function (factory) {


;(function (factory) {
var registeredInModuleLoader = false;

	if (typeof define === 'function' && define.amd) {

	if (typeof define === 'function' && define.amd) {

		// AMD. Register as anonymous module.
define(['jquery'], factory);
} else {
// Browser globals.
factory(jQuery);


		define(factory);
registeredInModuleLoader = true;
}
if (typeof exports === 'object') {
module.exports = factory();
registeredInModuleLoader = true;

	}

	}

}(function ($) {

var pluses = /\+/g;

function raw(s) {
return s;
}

function decoded(s) {
return decodeURIComponent(s.replace(pluses, ' '));
}

function converted(s) {
if (s.indexOf('"') === 0) {
// This is a quoted cookie as according to RFC2068, unescape
s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');


	if (!registeredInModuleLoader) {
var OldCookies = window.Cookies;
var api = window.Cookies = factory();
api.noConflict = function () {
window.Cookies = OldCookies;
return api;
};
}
}(function () {
function extend () {
var i = 0;
var result = {};
for (; i < arguments.length; i++) {
var attributes = arguments[ i ];
for (var key in attributes) {
result[key] = attributes[key];
}

		}

		}

		try {
return config.json ? JSON.parse(s) : s;
} catch(er) {}

		return result;



	}


	}


	var config = $.cookie = function (key, value, options) {








































	function init (converter) {
function api (key, value, attributes) {
var result;
if (typeof document === 'undefined') {
return;
}

// Write

if (arguments.length > 1) {
attributes = extend({
path: '/'
}, api.defaults, attributes);

if (typeof attributes.expires === 'number') {
var expires = new Date();
expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
attributes.expires = expires;
}

// We're using "expires" because "max-age" is not supported by IE
attributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';

try {
result = JSON.stringify(value);
if (/^[\{\[]/.test(result)) {
value = result;
}
} catch (e) {}

if (!converter.write) {
value = encodeURIComponent(String(value))
.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
} else {
value = converter.write(value, key);
}

key = encodeURIComponent(String(key));
key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
key = key.replace(/[\(\)]/g, escape);





		// write
if (value !== undefined) {
options = $.extend({}, config.defaults, options);

if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}

value = config.json ? JSON.stringify(value) : String(value);

return (document.cookie = [
config.raw ? key : encodeURIComponent(key),
'=',
config.raw ? value : encodeURIComponent(value),
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 decode = config.raw ? raw : decoded;
var cookies = document.cookie.split('; ');
var result = key ? undefined : {};
for (var i = 0, l = cookies.length; i < l; i++) {
var parts = cookies[i].split('=');
var name = decode(parts.shift());
var cookie = decode(parts.join('='));

if (key && key === name) {
result = converted(cookie);
break;
}

				var stringifiedAttributes = '';

for (var attributeName in attributes) {
if (!attributes[attributeName]) {
continue;
}
stringifiedAttributes += '; ' + attributeName;
if (attributes[attributeName] === true) {
continue;
}
stringifiedAttributes += '=' + attributes[attributeName];
}
return (document.cookie = key + '=' + value + stringifiedAttributes);
}

// Read





















if (!key) {


if (!key) {

				result[name] = converted(cookie);
}
}

				result = {};
}






		return result;
};

























			// 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 "get()"
var cookies = document.cookie ? document.cookie.split('; ') : [];
var rdecode = /(%[0-9A-Z]{2})+/g;
var i = 0;

for (; i < cookies.length; i++) {
var parts = cookies[i].split('=');
var cookie = parts.slice(1).join('=');

if (cookie.charAt(0) === '"') {
cookie = cookie.slice(1, -1);
}

try {
var name = parts[0].replace(rdecode, decodeURIComponent);
cookie = converter.read ?
converter.read(cookie, name) : converter(cookie, name) ||
cookie.replace(rdecode, decodeURIComponent);

if (this.json) {
try {
cookie = JSON.parse(cookie);
} catch (e) {}
}





	config.defaults = {};

$.removeCookie = function (key, options) {
if ($.cookie(key) !== undefined) {
// Must not alter options, thus extending a fresh object...
$.cookie(key, '', $.extend({}, options, { expires: -1 }));
return true;






					if (key === name) {
result = cookie;
break;
}

if (!key) {
result[name] = cookie;
}
} catch (e) {}
}

return result;

		}

		}

		return false;
};

 




 
		api.set = api;
api.get = function (key) {
return api.call(api, key);
};
api.getJSON = function () {
return api.apply({
json: true
}, [].slice.call(arguments));
};
api.defaults = {};

api.remove = function (key, attributes) {
api(key, '', extend(attributes, {
expires: -1
}));
};

api.withConverter = init;

return api;
}

return init(function () {});

}));

}));