feature(modules) jquery v2.1.4

This commit is contained in:
coderaiser 2015-05-13 05:26:51 -04:00
parent 11c26c8014
commit b02cf140c0
7 changed files with 24 additions and 17 deletions

View file

@ -22,7 +22,7 @@
],
"dependencies": {
"fancybox": "~2.1.5",
"jquery": "~2.1.3",
"jquery": "~2.1.4",
"menu": "~0.7.8",
"promise-polyfill": "~2.0.0",
"format-io": "~0.9.6"

View file

@ -11,7 +11,7 @@
"name": "remote",
"data": [{
"name": "jquery",
"version": "2.1.3",
"version": "2.1.4",
"local": "/modules/jquery/dist/jquery.js",
"remote": "//ajax.googleapis.com/ajax/libs/jquery/{{ version }}/jquery.min.js"
}, {

View file

@ -1,11 +1,12 @@
{
"name": "jquery",
"version": "2.1.3",
"version": "2.1.4",
"main": "dist/jquery.js",
"license": "MIT",
"ignore": [
"**/.*",
"build",
"dist/cdn",
"speed",
"test",
"*.md",
@ -25,13 +26,13 @@
"library"
],
"homepage": "https://github.com/jquery/jquery",
"_release": "2.1.3",
"_release": "2.1.4",
"_resolution": {
"type": "version",
"tag": "2.1.3",
"commit": "8f2a9d9272d6ed7f32d3a484740ab342c02541e0"
"tag": "2.1.4",
"commit": "7751e69b615c6eca6f783a81e292a55725af6b85"
},
"_source": "git://github.com/jquery/jquery.git",
"_target": "~2.1.3",
"_target": "~2.1.4",
"_originalSource": "jquery"
}

View file

@ -1,11 +1,12 @@
{
"name": "jquery",
"version": "2.1.3",
"version": "2.1.4",
"main": "dist/jquery.js",
"license": "MIT",
"ignore": [
"**/.*",
"build",
"dist/cdn",
"speed",
"test",
"*.md",

View file

@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v2.1.3
* jQuery JavaScript Library v2.1.4
* http://jquery.com/
*
* Includes Sizzle.js
@ -9,7 +9,7 @@
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-12-18T15:11Z
* Date: 2015-04-28T16:01Z
*/
(function( global, factory ) {
@ -67,7 +67,7 @@ var
// Use the correct document accordingly with window argument (sandbox)
document = window.document,
version = "2.1.3",
version = "2.1.4",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
@ -531,7 +531,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 ) ) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long