Vergleich jscripts/jquery.plugins.js - 1.8.0 - 1.8.12

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

/**

 * jGrowl 1.3.0

 * jGrowl 1.4.3

 *
* 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'
},
animateClose: {
opacity: 'hide'

			animateOpen:		{
opacity: 'show'
},
animateClose: {
opacity: 'hide'

			}
},


			}
},


		notifications: [],

/** jGrowl Container Node **/

		notifications: [],

/** jGrowl Container Node **/

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);
} else {
$('div.jGrowl-notification:first', self.element).before(notification);

						$('.jGrowl-notification:last', self.element).after(notification);
} else {
$('.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).trigger('jGrowl.afterOpen');

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

$(this).trigger('jGrowl.afterOpen');

Zeile 153Zeile 157
				}
}).bind('jGrowl.afterOpen', function() {
o.afterOpen.apply( notification , [notification,message,o,self.element] );

				}
}).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).siblings().trigger("jGrowl.beforeClose");

				$(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).siblings().trigger("jGrowl.beforeClose");





						if ( $.isFunction( self.defaults.closer ) ) {
self.defaults.closer.apply( $(this).parent()[0] , [$(this).parent()[0]] );
}

						if ( $.isFunction( self.defaults.closer ) ) {
self.defaults.closer.apply( $(this).parent()[0] , [$(this).parent()[0]] );
}

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 201Zeile 207
			});

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();
});

			}
},


			}
},


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

		/** Setup the jGrowl Notification Container **/
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');
});
}
});

/** Reference the Defaults Object for compatibility with older versions of jGrowl **/

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

/** Reference the Defaults Object for compatibility with older versions of jGrowl **/

	$.jGrowl.defaults = $.fn.jGrowl.prototype.defaults;

})(jQuery);

	$.jGrowl.defaults = $.fn.jGrowl.prototype.defaults;

})(jQuery);


/*
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.5.8

*/
(function($) {


*/
(function($) {


Zeile 288Zeile 294
      }
} else {
this.$elm = el;

      }
} else {
this.$elm = el;

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

      this.open();
}
};

      this.open();
}
};

Zeile 317Zeile 324
    close: function() {
this.unblock();
this.hide();

    close: function() {
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');
},


      $(document).off('keydown.modal');
},


Zeile 444Zeile 448
    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

  };

// Event constants

Zeile 459Zeile 462
  $.modal.AJAX_SUCCESS = 'modal:ajax:success';
$.modal.AJAX_FAIL = 'modal:ajax:fail';
$.modal.AJAX_COMPLETE = 'modal:ajax:complete';

  $.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) {
current = new $.modal(this, options);

  $.fn.modal = function(options){
if (this.length === 1) {
current = new $.modal(this, options);

Zeile 482Zeile 485
(function($){
var current_popup = '';
var PopupMenu = function(el, close_in_popupmenu)

(function($){
var current_popup = '';
var PopupMenu = function(el, close_in_popupmenu)

	{

	{

		var el = $(el);
var popup = this;
var popup_menu = $("#" + el.attr('id') + "_popup");

		var el = $(el);
var popup = this;
var popup_menu = $("#" + el.attr('id') + "_popup");

Zeile 515Zeile 518
				position: 'absolute',
top: offset.top,
left: offset.left-adjust

				position: 'absolute',
top: offset.top,
left: offset.left-adjust

			});

popup_menu.show();

			});

popup_menu.show();


// Closes the popup if we click outside the button (this doesn't seem to work properly - couldn't find any solutions that actually did - if we click the first item on the menu)
// Credits: http://stackoverflow.com/questions/1160880/detect-click-outside-element


// Closes the popup if we click outside the button (this doesn't seem to work properly - couldn't find any solutions that actually did - if we click the first item on the menu)
// Credits: http://stackoverflow.com/questions/1160880/detect-click-outside-element

Zeile 539Zeile 542
		this.close = function(e)
{
popup_menu.hide();

		this.close = function(e)
{
popup_menu.hide();

		}
}

		}
}

	$.fn.popupMenu = function(close_in_popupmenu)
{
return this.each(function()

	$.fn.popupMenu = function(close_in_popupmenu)
{
return this.each(function()

Zeile 550Zeile 553
		});
}
})(jQuery);

		});
}
})(jQuery);


/*! jQuery-Impromptu - v5.2.4 - 2014-05-26


/*! jQuery-Impromptu - v6.2.1 - 2015-05-10

* http://trentrichardson.com/Impromptu

* 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');

* Copyright (c) 2015 Trent Richardson; Licensed MIT */
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else {
factory(root.jQuery);
}
}(this, function($) {
'use strict';

// ########################################################################
// Base object
// ########################################################################

/**
* Imp - Impromptu object - passing no params will not open, only return the instance
* @param message String/Object - String of html or Object of states
* @param options Object - Options to set the prompt
* @return Imp - the instance of this Impromptu object
*/
var Imp = function(message, options){
var t = this;
t.id = Imp.count++;

Imp.lifo.push(t);



























		//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);

		if(message){
t.open(message, options);




























































































































































		}

		}

 
		return t;
};





		return $.prompt.jqib;
};

$.prompt.defaults = {





	// ########################################################################
// static properties and methods
// ########################################################################

/**
* defaults - the default options
*/
Imp.defaults = {

		prefix:'jqi',
classes: {
box: '',

		prefix:'jqi',
classes: {
box: '',

Zeile 781Zeile 613
		closeText: '&times;',
buttons: {
Ok: true

		closeText: '&times;',
buttons: {
Ok: true

		},


		},
buttonTimeout: 1000,

		loaded: function(e){},
submit: function(e,v,m,f){},
close: function(e,v,m,f){},

		loaded: function(e){},
submit: function(e,v,m,f){},
close: function(e,v,m,f){},

Zeile 792Zeile 625
		overlayspeed: 'slow',
promptspeed: 'fast',
show: 'fadeIn',

		overlayspeed: 'slow',
promptspeed: 'fast',
show: 'fadeIn',

 
		hide: 'fadeOut',

		focus: 0,
defaultButton: 0,
useiframe: false,
top: '15%',

		focus: 0,
defaultButton: 0,
useiframe: false,
top: '15%',

		position: { 
container: null,
x: null,

		position: {
container: null,
x: null,

			y: null,
arrow: null,
width: null

			y: null,
arrow: null,
width: null

Zeile 806Zeile 640
		persistent: true,
timeout: 0,
states: {},

		persistent: true,
timeout: 0,
states: {},

 
		initialState: 0,

		state: {
name: null,
title: '',

		state: {
name: null,
title: '',

Zeile 815Zeile 650
			},
focus: 0,
defaultButton: 0,

			},
focus: 0,
defaultButton: 0,

			position: { 
container: null,
x: null,

			position: {
container: null,
x: null,

				y: null,
arrow: null,
width: null
},
submit: function(e,v,m,f){
return true;

				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

	/**
* setDefaults - Sets the default options

	* @param o Object - Options to set as defaults
* @return void

	* @param o Object - Options to set as defaults
* @return void

	*/

	*/

	$.prompt.setDefaults = function(o) {
$.prompt.defaults = $.extend({}, $.prompt.defaults, o);

	Imp.setDefaults = function(o) {
Imp.defaults = $.extend({}, Imp.defaults, o);

	};

	};

	



	/**
* setStateDefaults - Sets the default options for a state
* @param o Object - Options to set as defaults
* @return void

	/**
* 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)
});
}

	*/
Imp.setStateDefaults = function(o) {
Imp.defaults.state = $.extend({}, Imp.defaults.state, o);
};

/**
* @var Int - A counter used to provide a unique ID for new prompts
*/
Imp.count = 0;

/**
* @var Array - An array of Impromptu intances in a LIFO queue (last in first out)
*/
Imp.lifo = [];













































































		// 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

	* getLast - get the last element from the queue (doesn't pop, just returns)
* @return Imp - the instance of this Impromptu object or false if queue is empty




















	*/

	*/

	$.prompt.get = function(state) {
return $('.'+ $.prompt.currentPrefix);


	Imp.getLast = function(){
var l = Imp.lifo.length;
return (l > 0)? Imp.lifo[l-1] : false;

	};

/**

	};

/**

	* 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

	* removeFromStack - remove an element from the lifo stack by its id
* @param id int - id of the instance to remove
* @return api - The api of the element removed from the stack or void



	*/

	*/

	$.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>';


	Imp.removeFromStack = function(id){
for(var i=Imp.lifo.length-1; i>=0; i--){
if(Imp.lifo[i].id === id){
return Imp.lifo.splice(i,1)[0];



































			}

			}

			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);



















































































































































































































































































































































































































































































































































	// ########################################################################
// extend our object instance properties and methods
// ########################################################################
Imp.prototype = {

/**
* @var Int - A unique id, simply an autoincremented number
*/
id: null,

/**
* open - Opens the prompt
* @param message String/Object - String of html or Object of states
* @param options Object - Options to set the prompt
* @return Imp - the instance of this Impromptu object
*/
open: function(message, options) {
var t = this;

t.options = $.extend({},Imp.defaults,options);

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

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

//build the box and fade
var msgbox = '<div class="'+ opts.prefix +'box '+ opts.classes.box +'">';
if(opts.useiframe && ($('object, applet').length > 0)) {
msgbox += '<iframe src="javascript:false;" 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="#" 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>';

t.jqib = $(msgbox).appendTo($body);
t.jqi = t.jqib.children('.'+ opts.prefix);
t.jqif = t.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
t.options.states = {};
var k,v;
for(k in message){
v = $.extend({},Imp.defaults.state,{name:k},message[k]);
t.addState(v.name, v);

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

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

// disable for a moment to prevent multiple clicks
if(t.options.buttonTimeout > 0){
t.disableStateButtons(statename);
setTimeout(function(){
t.enableStateButtons(statename);
}, t.options.buttonTimeout);
}

// 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(t.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()){
t.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(t.jqi.css('top').replace('px',''),10) - offset;

//$window.scrollTop(top);
$('html,body').animate({ scrollTop: top }, 'fast', function(){
var i = 0;
t.jqib.addClass(opts.prefix +'warning');
var intervalid = setInterval(function(){
t.jqib.toggleClass(opts.prefix +'warning');
if(i++ > 1){
clearInterval(intervalid);
t.jqib.removeClass(opts.prefix +'warning');
}
}, 100);
});
}
else {
t.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 = t.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',t.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;
}
}
};

t.position();
t.style();

// store copy of the window resize function for interal use only
t._windowResize = function(e){
t.position(e);
};
$window.resize({ animate: false }, t._windowResize);

t.jqif.click(fadeClicked);
t.jqi.find('.'+ opts.prefix +'close').click(function(){ t.close(); });
t.jqi.find('.'+ opts.prefix +'form').submit(function(){ return false; });
t.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
t.jqif[opts.show](opts.overlayspeed);
t.jqi[opts.show](opts.promptspeed, function(){

t.goToState(
isNaN(opts.initialState) ? opts.initialState :
t.jqi.find('.'+ opts.prefix +'states .'+ opts.prefix +'state').eq(opts.initialState).data('jqi-name')
);

t.jqib.trigger('impromptu:loaded');
});

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

return t;
},

/**
* 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 Imp - the instance of this Impromptu object
*/
close: function(callCallback, clicked, msg, formvals){
var t = this;
Imp.removeFromStack(t.id);

if(t.timeout){
clearTimeout(t.timeout);
t.timeout = false;
}

if(t.jqib){
t.jqib[t.options.hide]('fast',function(){

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

t.jqib.remove();

$(window).off('resize', t._windowResize);

if(typeof callCallback === 'function'){
callCallback();
}
});
}
t.currentStateName = "";

return t;
},

/**
* 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
*/
addState: function(statename, stateobj, afterState) {
var t = this,
state = '',
$state = null,
arrow = '',
title = '',
opts = t.options,
$jqistates = t.jqi.find('.'+ opts.prefix +'states'),
buttons = [],
showHtml,defbtn,k,v,l,i=0;

stateobj = $.extend({},Imp.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>';
}

showHtml = stateobj.html;
if (typeof stateobj.html === 'function') {
showHtml = 'Error: html function must return text';
}

state += '<div class="'+ opts.prefix + 'state" data-jqi-name="'+ statename +'">'+
arrow + title +
'<div class="'+ opts.prefix +'message '+ opts.classes.message +'">' + showHtml +'</div>'+
'<div class="'+ opts.prefix +'buttons'+ ($.isEmptyObject(stateobj.buttons)? 'hide ':' ') + opts.classes.buttons +'">';

// state buttons may be in object or array, lets convert objects to arrays
if($.isArray(stateobj.buttons)){
buttons = stateobj.buttons;
}
else if($.isPlainObject(stateobj.buttons)){
for(k in stateobj.buttons){
if(stateobj.buttons.hasOwnProperty(k)){
buttons.push({ title: k, value: stateobj.buttons[k] });
}
}
}

// iterate over each button and create them
for(i=0, l=buttons.length; i<l; i++){
v = buttons[i],
defbtn = stateobj.focus === i || (isNaN(stateobj.focus) && stateobj.defaultButton === i) ? (opts.prefix + 'defaultbutton ' + opts.classes.defaultButton) : '';

state += '<button class="'+ opts.classes.button +' '+ opts.prefix + '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,'') + '" value="' + v.value + '">' + v.title + '</button>';
}

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

$state = $(state).css({display:'none'});

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

if(afterState !== undefined){
t.getState(afterState).after($state);
}
else{
$jqistates.append($state);
}

t.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
*/
removeState: function(state, newState) {
var t = this,
$state = t.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 && t.getState(newState).length > 0){
t.goToState(newState, false, rm);
}
else if($state.next().length > 0){
t.nextState(rm);
}
else if($state.prev().length > 0){
t.prevState(rm);
}
else{
t.close();
}
}
else{
$state.slideUp('slow', rm);
}

return true;
},

/**
* getApi - Get the api, so you can extract it from $.prompt stack
* @return jQuery - the prompt
*/
getApi: function() {
return this;
},

/**
* getBox - Get the box containing fade and prompt
* @return jQuery - the prompt
*/
getBox: function() {
return this.jqib;
},

/**
* getPrompt - Get the prompt
* @return jQuery - the prompt
*/
getPrompt: function() {
return this.jqi;
},

/**
* getState - Get the state by its name
* @param statename String - Name of the state
* @return jQuery - the state
*/
getState: function(statename) {
return this.jqi.find('[data-jqi-name="'+ statename +'"]');
},

/**
* getCurrentState - Get the current visible state
* @return jQuery - the current visible state
*/
getCurrentState: function() {
return this.getState(this.getCurrentStateName());
},

/**
* getCurrentStateName - Get the name of the current visible state/substate
* @return String - the current visible state's name
*/
getCurrentStateName: function() {
return this.currentStateName;
},

/**
* disableStateButtons - Disables the buttons in a state
* @param statename String - Name of the state containing buttons
* @param buttons Array - Array of button values to disable. By default all are disabled
* @param enable Boolean - True to enable the buttons instead of disabling (internally use only)
* @return Void
*/
disableStateButtons: function(statename, buttons, enable) {
var t = this;

if($.isArray(statename)){
buttons = statename;
statename = null;
}

t.getState(statename || t.getCurrentStateName()).find('.'+ t.options.prefix + 'button').each(function(i,btn){
if(buttons === undefined || $.inArray(btn.value, buttons) !== -1){
btn.disabled = !enable;
}
});
},

/**
* enableStateButtons - Enables the buttons in a state
* @param statename String - Name of the state containing buttons. Defaults to current state
* @param buttons Array - Array of button values to enable. By default all are enabled
* @return Void
*/
enableStateButtons: function(statename, buttons) {
this.disableStateButtons(statename, buttons, true);
},

/**
* position - Repositions the prompt (Used internally)
* @return void
*/
position: function(e){
var t = this,
restoreFx = $.fx.off,
$state = t.getCurrentState(),
stateObj = t.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,
scrollTop = parseInt($window.scrollTop(),10),
top = scrollTop + (t.options.top.toString().indexOf('%') >= 0?
(windowHeight*(parseInt(t.options.top,10)/100)) : parseInt(t.options.top,10));

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

t.jqib.css({
position: "absolute",
height: height,
width: "100%",
top: 0,
left: 0,
right: 0,
bottom: 0
});
t.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(),
hasScrolled = false;

if($.isPlainObject(offset) && offset.top !== undefined){
top = (offset.top + pos.y) - (t.options.top.toString().indexOf('%') >= 0? (windowHeight*(parseInt(t.options.top,10)/100)) : parseInt(t.options.top,10));

t.jqi.css({
position: "absolute"
});
t.jqi.animate({
top: offset.top + pos.y,
left: offset.left + pos.x,
marginLeft: 0,
width: (pos.width !== undefined)? pos.width : null
}, function(){
// if it didn't scroll before, check that the bottom is within view. Since width
// is animated we must use the callback before we know the height
if(!hasScrolled && (offset.top + pos.y + t.jqi.outerHeight(true)) > (scrollTop + windowHeight)){
$('html,body').animate({ scrollTop: top }, 'slow', 'swing', function(){});
hasScrolled = true;
}
});

// scroll if the top is out of the viewing area
if(top < scrollTop || top > scrollTop + windowHeight){
$('html,body').animate({ scrollTop: top }, 'slow', 'swing', function(){});
hasScrolled = true;
}
}

			}

			}

			else if($state.next().length > 0){
$.prompt.nextState(rm);
}
else if($state.prev().length > 0){
$.prompt.prevState(rm);








			// custom state width animation
else if(pos && pos.width){
t.jqi.css({
position: "absolute",
left: '50%'
});
t.jqi.animate({
top: pos.y || top,
left: pos.x || '50%',
marginLeft: ((pos.width/2)*-1),
width: pos.width
});

			}

			}

 
			// standard prompt positioning

			else{

			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;
}

				t.jqi.css({
position: "absolute",
top: top,
left: '50%',//$window.width()/2,
marginLeft: ((t.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
*/
style: function(){
var t = this;

t.jqif.css({
zIndex: t.options.zIndex,
display: "none",
opacity: t.options.opacity
});
t.jqi.css({
zIndex: t.options.zIndex+1,
display: "none"
});
t.jqib.css({
zIndex: t.options.zIndex
});
},

/**
* 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
*/
goToState: function(state, subState, callback) {
var t = this,
$jqi = t.jqi,
jqiopts = t.options,
$state = t.getState(state),
stateobj = jqiopts.states[$state.data('jqi-name')],
promptstatechanginge = new $.Event('impromptu:statechanging'),
opts = t.options;

if(stateobj !== undefined){










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

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

				if (typeof stateobj.html === 'function') {
var contentLaterFunc = stateobj.html;
$state.find('.' + opts.prefix +'message ').html(contentLaterFunc());
}





			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;

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



















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

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






				// 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 );


































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

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

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

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

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

// 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('.'+ opts.prefix +'defaultbutton').focus();
}

$t.find('.'+ opts.prefix +'arrow').show(jqiopts.promptspeed);

if (typeof callback === 'function'){
t.jqib.on('impromptu:statechanged', callback);
}
t.jqib.trigger('impromptu:statechanged', [state]);
if (typeof callback === 'function'){
t.jqib.off('impromptu:statechanged', callback);
}
});
if(!subState){
t.position();
}
} // end isDefaultPrevented()
}// end stateobj !== undefined

return $state;
},

/**
* nextState - Transition to the next state
* @param callback Function - called when the transition is complete
* @return jQuery - the newly active state
*/
nextState: function(callback) {
var t = this,
$next = t.getCurrentState().next();
if($next.length > 0){
t.goToState( $next.data('jqi-name'), callback );
}
return $next;
},

/**
* prevState - Transition to the previous state
* @param callback Function - called when the transition is complete
* @return jQuery - the newly active state
*/
prevState: function(callback) {
var t = this,
$prev = t.getCurrentState().prev();
if($prev.length > 0){
t.goToState( $prev.data('jqi-name'), callback );
}
return $prev;

		}

		}

		return $prev;

















};

// ########################################################################
// $.prompt will manage a queue of Impromptu instances
// ########################################################################

/**
* $.prompt create a new Impromptu instance and push it on the stack of instances
* @param message String/Object - String of html or Object of states
* @param options Object - Options to set the prompt
* @return jQuery - the jQuery object of the prompt within the modal
*/
$.prompt = function(message, options){
var api = new Imp(message, options);
return api.jqi;

	};

	};

	









/**
* Copy over static methods
*/
$.each(Imp, function(k,v){
$.prompt[k] = v;
});


	/**

	/**

	* 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(){

	* Create a proxy for accessing all instance methods. The close method pops from queue.
*/
$.each(Imp.prototype, function(k,v){
$.prompt[k] = function(){
var api = Imp.getLast(); // always use the last instance on the stack

if(api && typeof api[k] === "function"){
return api[k].apply(api, arguments);
}
};
});

// ########################################################################
// jQuery Plugin and public access
// ########################################################################





				$.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

	/**
* Enable using $('.selector').prompt({});
* This will grab the html within the prompt as the prompt message

Zeile 1240Zeile 1468
		if(options.withDataAndEvents === undefined){
options.withDataAndEvents = false;
}

		if(options.withDataAndEvents === undefined){
options.withDataAndEvents = false;
}

		



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

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

	};

})(jQuery);








	};

/**
* Export it as Impromptu and $.prompt
* Can be used from here forth as new Impromptu(states, opts)
*/
window.Impromptu = Imp;

}));


/*!

/*!

 * jQuery Cookie Plugin v1.3.1

 * jQuery Cookie Plugin v1.4.1

 * https://github.com/carhartl/jquery-cookie
*
* Copyright 2013 Klaus Hartl

 * https://github.com/carhartl/jquery-cookie
*
* Copyright 2013 Klaus Hartl

Zeile 1255Zeile 1489
 */
(function (factory) {
if (typeof define === 'function' && define.amd) {

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

		// AMD. Register as anonymous module.

		// AMD

		define(['jquery'], factory);

		define(['jquery'], factory);

 
	} else if (typeof exports === 'object') {
// CommonJS
factory(require('jquery'));

	} else {

	} else {

		// Browser globals.

		// Browser globals

		factory(jQuery);
}
}(function ($) {

var pluses = /\+/g;


		factory(jQuery);
}
}(function ($) {

var pluses = /\+/g;


	function raw(s) {
return s;

	function encode(s) {
return config.raw ? s : encodeURIComponent(s);

	}


	}


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

	function decode(s) {
return config.raw ? s : decodeURIComponent(s);

	}


	}


	function converted(s) {





	function stringifyCookieValue(value) {
return encode(config.json ? JSON.stringify(value) : String(value));
}

function parseCookieValue(s) {

		if (s.indexOf('"') === 0) {

		if (s.indexOf('"') === 0) {

			// This is a quoted cookie as according to RFC2068, unescape

			// This is a quoted cookie as according to RFC2068, unescape...

			s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
}

			s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
}

 


		try {

		try {

 
			// Replace server-side written pluses with spaces.
// If we can't decode the cookie, ignore it, it's unusable.
// If we can't parse the cookie, ignore it, it's unusable.
s = decodeURIComponent(s.replace(pluses, ' '));

			return config.json ? JSON.parse(s) : s;

			return config.json ? JSON.parse(s) : s;

		} catch(er) {}






		} catch(e) {}
}

function read(s, converter) {
var value = config.raw ? s : parseCookieValue(s);
return $.isFunction(converter) ? converter(value) : value;

	}

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


	}

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


		// write
if (value !== undefined) {


		// Write

if (value !== undefined && !$.isFunction(value)) {

			options = $.extend({}, config.defaults, options);

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

			options = $.extend({}, config.defaults, options);

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

				t.setDate(t.getDate() + days);

				t.setTime(+t + days * 864e+5);

			}

			}


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

 

return (document.cookie = [


return (document.cookie = [

				config.raw ? key : encodeURIComponent(key),
'=',
config.raw ? value : encodeURIComponent(value),

				encode(key), '=', stringifyCookieValue(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.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 : '',

Zeile 1307Zeile 1555
			].join(''));
}


			].join(''));
}


		// read
var decode = config.raw ? raw : decoded;
var cookies = document.cookie.split('; ');

		// Read



		var result = key ? undefined : {};

		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());

		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('='));

			var cookie = parts.join('=');


if (key && key === name) {


if (key && key === name) {

				result = converted(cookie);


				// If second argument (value) is a function it's a converter...
result = read(cookie, value);

				break;

				break;

			}

			}





			if (!key) {
result[name] = converted(cookie);


			// Prevent storing a cookie that we couldn't decode.
if (!key && (cookie = read(cookie)) !== undefined) {
result[name] = cookie;

			}

			}

		}

		}


return result;
};

config.defaults = {};


return result;
};

config.defaults = {};





	$.removeCookie = function (key, options) {

	$.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 ($.cookie(key) === undefined) {
return false;



		}

		}

		return false;





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

	};

}));

	};

}));