You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2015/05/12 15:35:47 UTC

tapestry-5 git commit: update jQuery to 1.11.3

Repository: tapestry-5
Updated Branches:
  refs/heads/master 5dd3a5dc4 -> 83641549a


update jQuery to 1.11.3


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/83641549
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/83641549
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/83641549

Branch: refs/heads/master
Commit: 83641549ab16a4b382fd888bc22abe17679fb62a
Parents: 5dd3a5d
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Tue May 12 15:35:22 2015 +0200
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Tue May 12 15:35:22 2015 +0200

----------------------------------------------------------------------
 .../main/resources/META-INF/assets/tapestry5/jquery.js | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/83641549/tapestry-core/src/main/resources/META-INF/assets/tapestry5/jquery.js
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/resources/META-INF/assets/tapestry5/jquery.js b/tapestry-core/src/main/resources/META-INF/assets/tapestry5/jquery.js
index 1c3aa82..6feb110 100644
--- a/tapestry-core/src/main/resources/META-INF/assets/tapestry5/jquery.js
+++ b/tapestry-core/src/main/resources/META-INF/assets/tapestry5/jquery.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery JavaScript Library v1.11.2
+ * jQuery JavaScript Library v1.11.3
  * http://jquery.com/
  *
  * Includes Sizzle.js
@@ -9,7 +9,7 @@
  * Released under the MIT license
  * http://jquery.org/license
  *
- * Date: 2014-12-17T15:27Z
+ * Date: 2015-04-28T16:19Z
  */
 
 (function( global, factory ) {
@@ -64,7 +64,7 @@ var support = {};
 
 
 var
-	version = "1.11.2",
+	version = "1.11.3",
 
 	// Define a local copy of jQuery
 	jQuery = function( selector, context ) {
@@ -569,7 +569,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
 });
 
 function isArraylike( obj ) {
-	var length = obj.length,
+
+	// Support: iOS 8.2 (not reproducible in simulator)
+	// `in` check used to prevent JIT error (gh-2145)
+	// hasOwn isn't used here due to false negatives
+	// regarding Nodelist length in IE
+	var length = "length" in obj && obj.length,
 		type = jQuery.type( obj );
 
 	if ( type === "function" || jQuery.isWindow( obj ) ) {