Fixed function closures so that Makefile can do its magic.
This commit is contained in:
parent
ac80ca2883
commit
3c641bd134
|
@ -1,4 +1,4 @@
|
||||||
(function( jQuery , undefined ) {
|
(function( jQuery ) {
|
||||||
|
|
||||||
var rquery = /\?/,
|
var rquery = /\?/,
|
||||||
rhash = /#.*$/,
|
rhash = /#.*$/,
|
||||||
|
@ -9,7 +9,9 @@ var rquery = /\?/,
|
||||||
|
|
||||||
slice = Array.prototype.slice,
|
slice = Array.prototype.slice,
|
||||||
|
|
||||||
isFunction = jQuery.isFunction;
|
isFunction = jQuery.isFunction,
|
||||||
|
|
||||||
|
undefined;
|
||||||
|
|
||||||
// Creates a jQuery xhr object
|
// Creates a jQuery xhr object
|
||||||
jQuery.xhr = function( _native ) {
|
jQuery.xhr = function( _native ) {
|
||||||
|
|
Loading…
Reference in a new issue