From c3c001cf5b0970457cc9d7492cb66bdc9a901a1e Mon Sep 17 00:00:00 2001 From: rwldrn Date: Mon, 6 Jun 2011 20:16:14 -0400 Subject: [PATCH] Landing pull request 404. Removes unused hasOwn var declaration. Fixes #9510. More Details: - https://github.com/jquery/jquery/pull/404 - http://bugs.jquery.com/ticket/9510 --- src/event.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/event.js b/src/event.js index d2d57d67..3f53ab5c 100644 --- a/src/event.js +++ b/src/event.js @@ -1,7 +1,6 @@ (function( jQuery ) { -var hasOwn = Object.prototype.hasOwnProperty, - rnamespaces = /\.(.*)$/, +var rnamespaces = /\.(.*)$/, rformElems = /^(?:textarea|input|select)$/i, rperiod = /\./g, rspaces = / /g,