Skip to content

Commit

Permalink
Update packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
a-gubskiy committed Apr 6, 2016
1 parent 922f313 commit 38a6c3e
Show file tree
Hide file tree
Showing 12 changed files with 3,093 additions and 275 deletions.
2 changes: 1 addition & 1 deletion src/X.PagedList.Mvc.Example/Scripts/_references.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="jquery-2.2.1.js" />
/// <reference path="jquery-2.2.2.js" />
/// <reference path="jquery-ui-1.11.4.js" />
/// <reference path="modernizr-2.8.3.js" />
/// <reference path="jquery.validate.js" />
Expand Down
4 changes: 0 additions & 4 deletions src/X.PagedList.Mvc.Example/Scripts/jquery-2.2.1.min.js

This file was deleted.

1 change: 0 additions & 1 deletion src/X.PagedList.Mvc.Example/Scripts/jquery-2.2.1.min.map

This file was deleted.

2,670 changes: 2,670 additions & 0 deletions src/X.PagedList.Mvc.Example/Scripts/jquery-2.2.2.intellisense.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v2.2.1
* jQuery JavaScript Library v2.2.2
* http://jquery.com/
*
* Includes Sizzle.js
Expand All @@ -9,7 +9,7 @@
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2016-02-22T19:11Z
* Date: 2016-03-17T17:51Z
*/

(function( global, factory ) {
Expand Down Expand Up @@ -65,7 +65,7 @@ var support = {};


var
version = "2.2.1",
version = "2.2.2",

// Define a local copy of jQuery
jQuery = function( selector, context ) {
Expand Down Expand Up @@ -276,6 +276,7 @@ jQuery.extend( {
},

isPlainObject: function( obj ) {
var key;

// Not plain objects:
// - Any object or value whose internal [[Class]] property is not "[object Object]"
Expand All @@ -285,14 +286,18 @@ jQuery.extend( {
return false;
}

// Not own constructor property must be Object
if ( obj.constructor &&
!hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
!hasOwn.call( obj, "constructor" ) &&
!hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
return false;
}

// If the function hasn't returned already, we're confident that
// |obj| is a plain object, created by {} or constructed with new Object
return true;
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own
for ( key in obj ) {}

return key === undefined || hasOwn.call( obj, key );
},

isEmptyObject: function( obj ) {
Expand Down Expand Up @@ -7325,6 +7330,12 @@ jQuery.extend( {
}
} );

// Support: IE <=11 only
// Accessing the selectedIndex property
// forces the browser to respect setting selected
// on the option
// The getter ensures a default option is selected
// when in an optgroup
if ( !support.optSelected ) {
jQuery.propHooks.selected = {
get: function( elem ) {
Expand All @@ -7333,6 +7344,16 @@ if ( !support.optSelected ) {
parent.parentNode.selectedIndex;
}
return null;
},
set: function( elem ) {
var parent = elem.parentNode;
if ( parent ) {
parent.selectedIndex;

if ( parent.parentNode ) {
parent.parentNode.selectedIndex;
}
}
}
};
}
Expand Down Expand Up @@ -7527,7 +7548,8 @@ jQuery.fn.extend( {



var rreturn = /\r/g;
var rreturn = /\r/g,
rspaces = /[\x20\t\r\n\f]+/g;

jQuery.fn.extend( {
val: function( value ) {
Expand Down Expand Up @@ -7603,9 +7625,15 @@ jQuery.extend( {
option: {
get: function( elem ) {

// Support: IE<11
// option.value not trimmed (#14858)
return jQuery.trim( elem.value );
var val = jQuery.find.attr( elem, "value" );
return val != null ?
val :

// Support: IE10-11+
// option.text throws exceptions (#14686, #14858)
// Strip and collapse whitespace
// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " );
}
},
select: {
Expand Down Expand Up @@ -7658,7 +7686,7 @@ jQuery.extend( {
while ( i-- ) {
option = options[ i ];
if ( option.selected =
jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
) {
optionSet = true;
}
Expand Down Expand Up @@ -9353,18 +9381,6 @@ jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {



// Support: Safari 8+
// In Safari 8 documents created via document.implementation.createHTMLDocument
// collapse sibling forms: the second one becomes a child of the first one.
// Because of that, this security measure has to be disabled in Safari 8.
// https://bugs.webkit.org/show_bug.cgi?id=137337
support.createHTMLDocument = ( function() {
var body = document.implementation.createHTMLDocument( "" ).body;
body.innerHTML = "<form></form><form></form>";
return body.childNodes.length === 2;
} )();


// Argument "data" should be string of html
// context (optional): If specified, the fragment will be created in this context,
// defaults to document
Expand All @@ -9377,12 +9393,7 @@ jQuery.parseHTML = function( data, context, keepScripts ) {
keepScripts = context;
context = false;
}

// Stop scripts or inline event handlers from being executed immediately
// by using document.implementation
context = context || ( support.createHTMLDocument ?
document.implementation.createHTMLDocument( "" ) :
document );
context = context || document;

var parsed = rsingleTag.exec( data ),
scripts = !keepScripts && [];
Expand Down
4 changes: 4 additions & 0 deletions src/X.PagedList.Mvc.Example/Scripts/jquery-2.2.2.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/X.PagedList.Mvc.Example/Scripts/jquery-2.2.2.min.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/X.PagedList.Mvc.Example/Scripts/jquery.validate-vsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* intended to be used only for design-time IntelliSense. Please use the
* standard jQuery library for all production use.
*
* Comment version: 1.14.0
* Comment version: 1.15.0
*/

/*
Expand All @@ -15,7 +15,7 @@
* for informational purposes only and are not the license terms under
* which Microsoft distributed this file.
*
* jQuery Validation Plugin - v1.14.0 - 2/4/2013
* jQuery Validation Plugin - v1.15.0 - 2/4/2013
* https://github.com/jzaefferer/jquery-validation
* Copyright (c) 2013 Jörn Zaefferer; Licensed MIT
*
Expand Down
Loading

0 comments on commit 38a6c3e

Please sign in to comment.