Skip to content

Commit a7d0b0b

Browse files
committed
Var wasn't being explicitly declared. Fixes #7226.
1 parent e1b940d commit a7d0b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ jQuery.fn.init.prototype = jQuery.fn;
312312

313313
jQuery.extend = jQuery.fn.extend = function() {
314314
// copy reference to target object
315-
var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy, copyIsArray;
315+
var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy, copyIsArray, clone;
316316

317317
// Handle a deep copy situation
318318
if ( typeof target === "boolean" ) {

0 commit comments

Comments
 (0)