mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Build: Upgrade to jQuery 1.11.3
This commit is contained in:
parent
e1751383f1
commit
ae25cdb688
@ -348,6 +348,9 @@ grunt.initConfig({
|
||||
"jquery-1.11.2/jquery.js": "jquery-1.11.2/dist/jquery.js",
|
||||
"jquery-1.11.2/MIT-LICENSE.txt": "jquery-1.11.2/MIT-LICENSE.txt",
|
||||
|
||||
"jquery-1.11.3/jquery.js": "jquery-1.11.3/dist/jquery.js",
|
||||
"jquery-1.11.3/MIT-LICENSE.txt": "jquery-1.11.3/MIT-LICENSE.txt",
|
||||
|
||||
"jquery-2.0.0/jquery.js": "jquery-2.0.0/jquery.js",
|
||||
"jquery-2.0.0/MIT-LICENSE.txt": "jquery-2.0.0/MIT-LICENSE.txt",
|
||||
|
||||
|
@ -35,7 +35,8 @@
|
||||
"jquery-1.11.0": "jquery#1.11.0",
|
||||
"jquery-1.11.1": "jquery#1.11.1",
|
||||
"jquery-1.11.2": "jquery#1.11.2",
|
||||
"jquery-1.x": "jquery#1.11.2",
|
||||
"jquery-1.11.3": "jquery#1.11.3",
|
||||
"jquery-1.x": "jquery#1.11.3",
|
||||
"jquery-2.0.0": "jquery#2.0.0",
|
||||
"jquery-2.0.1": "jquery#2.0.1",
|
||||
"jquery-2.0.2": "jquery#2.0.2",
|
||||
|
@ -4,7 +4,7 @@ module.exports = function( grunt ) {
|
||||
|
||||
var versions = {
|
||||
"compat-git": "compat-git",
|
||||
"1.11": "1.11.0 1.11.1 1.11.2",
|
||||
"1.11": "1.11.0 1.11.1 1.11.2 1.11.3",
|
||||
"1.10": "1.10.0 1.10.1 1.10.2",
|
||||
"1.9": "1.9.0 1.9.1",
|
||||
"1.8": "1.8.0 1.8.1 1.8.2 1.8.3",
|
||||
|
21
external/jquery-1.11.3/MIT-LICENSE.txt
vendored
Normal file
21
external/jquery-1.11.3/MIT-LICENSE.txt
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
Copyright 2014 jQuery Foundation and other contributors
|
||||
http://jquery.com/
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
10351
external/jquery-1.11.3/jquery.js
vendored
Normal file
10351
external/jquery-1.11.3/jquery.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
13
external/jquery/jquery.js
vendored
13
external/jquery/jquery.js
vendored
@ -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 ) ) {
|
||||
|
2
tests/lib/bootstrap.js
vendored
2
tests/lib/bootstrap.js
vendored
@ -96,7 +96,7 @@ function jqueryUrl() {
|
||||
if ( version === "git" || version === "compat-git" ) {
|
||||
url = "http://code.jquery.com/jquery-" + version;
|
||||
} else {
|
||||
url = "../../../external/jquery-" + ( version || "1.11.2" ) + "/jquery";
|
||||
url = "../../../external/jquery-" + ( version || "1.11.3" ) + "/jquery";
|
||||
}
|
||||
|
||||
return url;
|
||||
|
@ -24,7 +24,7 @@ QUnit.config.urlConfig.push({
|
||||
"1.8.0", "1.8.1", "1.8.2", "1.8.3",
|
||||
"1.9.0", "1.9.1",
|
||||
"1.10.0", "1.10.1", "1.10.2",
|
||||
"1.11.0", "1.11.1", "1.11.2",
|
||||
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
|
||||
"2.0.0", "2.0.1", "2.0.2", "2.0.3",
|
||||
"2.1.0", "2.1.1", "2.1.2", "2.1.3",
|
||||
"compat-git", "git"
|
||||
|
@ -5,7 +5,7 @@ var versions = [
|
||||
"1.8.0", "1.8.1", "1.8.2", "1.8.3",
|
||||
"1.9.0", "1.9.1",
|
||||
"1.10.0", "1.10.1", "1.10.2",
|
||||
"1.11.0", "1.11.1", "1.11.2",
|
||||
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
|
||||
"compat-git"
|
||||
],
|
||||
additionalTests = {
|
||||
|
Loading…
Reference in New Issue
Block a user