jquery-cdn 2.1.3 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23c93fccc4517642e02fd826fb38e79a2084e6a1
4
- data.tar.gz: 4eb44a42122960d1cc3a03c57c846739cde78735
3
+ metadata.gz: 612c74040906b7a48f8fa487e8df298e6fb892e8
4
+ data.tar.gz: af86e97eb6b29463b2a9f67fa0ce1903c78b3466
5
5
  SHA512:
6
- metadata.gz: 4412a1d418836124529d454d3b3f637d01218be62320c2a70e9005b3abb61a3a43dbebf4a5de757b6f0e71daba3a30ab8a8b4d94fae75a925deddf74631e2994
7
- data.tar.gz: b0cfb98d7a9b1332fe435d6b5596120d143357d5f9aa5335adb39dc36eaba32d9691fc002b5ef0a4e6733f561725b4e66737f685e03ec3004655a7e2db81caa9
6
+ metadata.gz: 7b9ea36ba88709d5a859eae742f49f6c44771d65c6b11c5561077c4830c1430e92142d30420329a0eb44325b89f36c2323566c05f42ba5cb59c3ca308c04d100
7
+ data.tar.gz: 927298dc954ff677f315b1646a040dad7eb0b88862a9111c196b6498f2d2a224166c535dff456f3065f39e9830be193d46b3912a9c71dcd16c189c4b5ae337f2
@@ -1,3 +1,3 @@
1
1
  module JqueryCdn
2
- VERSION = "2.1.3"
2
+ VERSION = "2.1.4"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * jQuery JavaScript Library v2.1.3
2
+ * jQuery JavaScript Library v2.1.4
3
3
  * http://jquery.com/
4
4
  *
5
5
  * Includes Sizzle.js
@@ -9,7 +9,7 @@
9
9
  * Released under the MIT license
10
10
  * http://jquery.org/license
11
11
  *
12
- * Date: 2014-12-18T15:11Z
12
+ * Date: 2015-04-28T16:01Z
13
13
  */
14
14
 
15
15
  (function( global, factory ) {
@@ -67,7 +67,7 @@ var
67
67
  // Use the correct document accordingly with window argument (sandbox)
68
68
  document = window.document,
69
69
 
70
- version = "2.1.3",
70
+ version = "2.1.4",
71
71
 
72
72
  // Define a local copy of jQuery
73
73
  jQuery = function( selector, context ) {
@@ -531,7 +531,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
531
531
  });
532
532
 
533
533
  function isArraylike( obj ) {
534
- var length = obj.length,
534
+
535
+ // Support: iOS 8.2 (not reproducible in simulator)
536
+ // `in` check used to prevent JIT error (gh-2145)
537
+ // hasOwn isn't used here due to false negatives
538
+ // regarding Nodelist length in IE
539
+ var length = "length" in obj && obj.length,
535
540
  type = jQuery.type( obj );
536
541
 
537
542
  if ( type === "function" || jQuery.isWindow( obj ) ) {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-cdn
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Sitnik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-21 00:00:00.000000000 Z
11
+ date: 2015-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sprockets
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  version: '0'
62
62
  requirements: []
63
63
  rubyforge_project:
64
- rubygems_version: 2.2.2
64
+ rubygems_version: 2.4.5
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: Best way to use latest jQuery in Ruby app