PATH:
home
/
centosnipponia
/
public_html
/
BAK_doohannl
/
wp-content
/
plugins
/
wp-store-locator
/
admin
/
js
/* * jQuery.ajaxQueue - A queue for ajax requests * * (c) 2011 Corey Frang * Dual licensed under the MIT and GPL licenses. * * Requires jQuery 1.5+ */ (function($) { // jQuery on an empty object, we are going to use this as our Queue var ajaxQueue = $({}); $.ajaxQueue = function( ajaxOpts ) { var jqXHR, dfd = $.Deferred(), promise = dfd.promise(); // run the actual query function doRequest( next ) { jqXHR = $.ajax( ajaxOpts ); jqXHR.done( dfd.resolve ) .fail( dfd.reject ) .then( next, next ); } // queue our ajax request ajaxQueue.queue( doRequest ); // add the abort method promise.abort = function( statusText ) { // proxy abort to the jqXHR if it is active if ( jqXHR ) { return jqXHR.abort( statusText ); } // if there wasn't already a jqXHR we need to remove from queue var queue = ajaxQueue.queue(), index = $.inArray( doRequest, queue ); if ( index > -1 ) { queue.splice( index, 1 ); } // and then reject the deferred dfd.rejectWith( ajaxOpts.context || ajaxOpts, [ promise, statusText, "" ] ); return promise; }; return promise; }; })(jQuery);
[+]
..
[-] wpsl-admin.min.js
[edit]
[-] wpsl-shortcode-generator.min.js
[edit]
[-] wpsl-admin.js
[edit]
[-] retina.js
[edit]
[-] wpsl-shortcode-generator.js
[edit]
[-] ajax-queue.min.js
[edit]
[-] ajax-queue.js
[edit]
[-] retina.min.js
[edit]
[-] wpsl-cpt-upgrade.js
[edit]
[-] .htaccess.disabled
[edit]