mirror of
https://github.com/mbirth/wiki.git
synced 2024-12-24 22:54:09 +00:00
Updated Bower components.
This commit is contained in:
parent
cd645983c8
commit
f7a0ca6069
9
bower_components/jquery/.bower.json
vendored
9
bower_components/jquery/.bower.json
vendored
@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "jquery",
|
"name": "jquery",
|
||||||
"version": "2.1.3",
|
"version": "2.1.4",
|
||||||
"main": "dist/jquery.js",
|
"main": "dist/jquery.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"**/.*",
|
"**/.*",
|
||||||
"build",
|
"build",
|
||||||
|
"dist/cdn",
|
||||||
"speed",
|
"speed",
|
||||||
"test",
|
"test",
|
||||||
"*.md",
|
"*.md",
|
||||||
@ -25,11 +26,11 @@
|
|||||||
"library"
|
"library"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/jquery/jquery",
|
"homepage": "https://github.com/jquery/jquery",
|
||||||
"_release": "2.1.3",
|
"_release": "2.1.4",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "2.1.3",
|
"tag": "2.1.4",
|
||||||
"commit": "8f2a9d9272d6ed7f32d3a484740ab342c02541e0"
|
"commit": "7751e69b615c6eca6f783a81e292a55725af6b85"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/jquery/jquery.git",
|
"_source": "git://github.com/jquery/jquery.git",
|
||||||
"_target": ">=1.6.3",
|
"_target": ">=1.6.3",
|
||||||
|
3
bower_components/jquery/bower.json
vendored
3
bower_components/jquery/bower.json
vendored
@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "jquery",
|
"name": "jquery",
|
||||||
"version": "2.1.3",
|
"version": "2.1.4",
|
||||||
"main": "dist/jquery.js",
|
"main": "dist/jquery.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"**/.*",
|
"**/.*",
|
||||||
"build",
|
"build",
|
||||||
|
"dist/cdn",
|
||||||
"speed",
|
"speed",
|
||||||
"test",
|
"test",
|
||||||
"*.md",
|
"*.md",
|
||||||
|
13
bower_components/jquery/dist/jquery.js
vendored
13
bower_components/jquery/dist/jquery.js
vendored
@ -1,5 +1,5 @@
|
|||||||
/*!
|
/*!
|
||||||
* jQuery JavaScript Library v2.1.3
|
* jQuery JavaScript Library v2.1.4
|
||||||
* http://jquery.com/
|
* http://jquery.com/
|
||||||
*
|
*
|
||||||
* Includes Sizzle.js
|
* Includes Sizzle.js
|
||||||
@ -9,7 +9,7 @@
|
|||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* Date: 2014-12-18T15:11Z
|
* Date: 2015-04-28T16:01Z
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function( global, factory ) {
|
(function( global, factory ) {
|
||||||
@ -67,7 +67,7 @@ var
|
|||||||
// Use the correct document accordingly with window argument (sandbox)
|
// Use the correct document accordingly with window argument (sandbox)
|
||||||
document = window.document,
|
document = window.document,
|
||||||
|
|
||||||
version = "2.1.3",
|
version = "2.1.4",
|
||||||
|
|
||||||
// Define a local copy of jQuery
|
// Define a local copy of jQuery
|
||||||
jQuery = function( selector, context ) {
|
jQuery = function( selector, context ) {
|
||||||
@ -531,7 +531,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
|
|||||||
});
|
});
|
||||||
|
|
||||||
function isArraylike( obj ) {
|
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 );
|
type = jQuery.type( obj );
|
||||||
|
|
||||||
if ( type === "function" || jQuery.isWindow( obj ) ) {
|
if ( type === "function" || jQuery.isWindow( obj ) ) {
|
||||||
|
8
bower_components/jquery/dist/jquery.min.js
vendored
8
bower_components/jquery/dist/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
2
bower_components/jquery/dist/jquery.min.map
vendored
2
bower_components/jquery/dist/jquery.min.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user