Revert "Ajax: Remove remnants of the load event alias handling"

This reverts commit 38bd5fedde.
This commit is contained in:
Oleg Gaidarenko 2015-12-22 15:17:35 +03:00
parent 0aa24f9c75
commit fa92796af8

View File

@ -4,14 +4,23 @@ define( [
"../ajax",
"../traversing",
"../manipulation",
"../selector"
"../selector",
// Optional event/alias dependency
"../event/alias"
], function( jQuery ) {
// Keep a copy of the old load method
var _load = jQuery.fn.load;
/**
* Load a url into a page
*/
jQuery.fn.load = function( url, params, callback ) {
var selector, response, type,
if ( typeof url !== "string" && _load ) {
return _load.apply( this, arguments );
}
var selector, type, response,
self = this,
off = url.indexOf( " " );