|
1 | 1 | /*!
|
2 | 2 | * jQuery JavaScript Library v1.6.1
|
3 |
| - * http://jquery.com/ |
| 3 | + * https://jquery.com/ |
4 | 4 | *
|
5 | 5 | * Copyright 2011, John Resig
|
6 | 6 | * Dual licensed under the MIT or GPL Version 2 licenses.
|
7 |
| - * http://jquery.org/license |
| 7 | + * https://jquery.org/license |
8 | 8 | *
|
9 | 9 | * Includes Sizzle.js
|
10 |
| - * http://sizzlejs.com/ |
| 10 | + * https://sizzlejs.com/ |
11 | 11 | * Copyright 2011, The Dojo Foundation
|
12 | 12 | * Released under the MIT, BSD, and GPL Licenses.
|
13 | 13 | *
|
@@ -554,7 +554,7 @@ jQuery.extend({
|
554 | 554 | }
|
555 | 555 |
|
556 | 556 | // Make sure the incoming data is actual JSON
|
557 |
| - // Logic borrowed from http://json.org/json2.js |
| 557 | + // Logic borrowed from https://json.org/json2.js |
558 | 558 | if ( rvalidchars.test( data.replace( rvalidescape, "@" )
|
559 | 559 | .replace( rvalidtokens, "]" )
|
560 | 560 | .replace( rvalidbraces, "")) ) {
|
@@ -591,7 +591,7 @@ jQuery.extend({
|
591 | 591 |
|
592 | 592 | // Evaluates a script in a global context
|
593 | 593 | // Workarounds based on findings by Jim Driscoll
|
594 |
| - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context |
| 594 | + // https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context |
595 | 595 | globalEval: function( data ) {
|
596 | 596 | if ( data && rnotwhite.test( data ) ) {
|
597 | 597 | // We use execScript on Internet Explorer
|
@@ -832,7 +832,7 @@ jQuery.extend({
|
832 | 832 | },
|
833 | 833 |
|
834 | 834 | // Use of jQuery.browser is frowned upon.
|
835 |
| - // More details: http://docs.jquery.com/Utilities/jQuery.browser |
| 835 | + // More details: https://docs.jquery.com/Utilities/jQuery.browser |
836 | 836 | uaMatch: function( ua ) {
|
837 | 837 | ua = ua.toLowerCase();
|
838 | 838 |
|
@@ -1348,7 +1348,7 @@ jQuery.support = (function() {
|
1348 | 1348 | documentElement.removeChild( body );
|
1349 | 1349 |
|
1350 | 1350 | // Technique from Juriy Zaytsev
|
1351 |
| - // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ |
| 1351 | + // https://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ |
1352 | 1352 | // We only care about the case where non-standard event systems
|
1353 | 1353 | // are used, namely in IE. Short-circuiting here helps us to
|
1354 | 1354 | // avoid an eval call (in setAttribute) which can cause CSP
|
@@ -1822,7 +1822,7 @@ jQuery.fn.extend({
|
1822 | 1822 | });
|
1823 | 1823 | },
|
1824 | 1824 | // Based off of the plugin by Clint Helfers, with permission.
|
1825 |
| - // http://blindsignals.com/index.php/2009/07/jquery-delay/ |
| 1825 | + // http://blindsignals.com |
1826 | 1826 | delay: function( time, type ) {
|
1827 | 1827 | time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
|
1828 | 1828 | type = type || "fx";
|
@@ -2273,7 +2273,7 @@ jQuery.extend({
|
2273 | 2273 | tabIndex: {
|
2274 | 2274 | get: function( elem ) {
|
2275 | 2275 | // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
|
2276 |
| - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ |
| 2276 | + // https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ |
2277 | 2277 | var attributeNode = elem.getAttributeNode("tabIndex");
|
2278 | 2278 |
|
2279 | 2279 | return attributeNode && attributeNode.specified ?
|
@@ -3099,7 +3099,7 @@ function returnTrue() {
|
3099 | 3099 | }
|
3100 | 3100 |
|
3101 | 3101 | // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
|
3102 |
| -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html |
| 3102 | +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html |
3103 | 3103 | jQuery.Event.prototype = {
|
3104 | 3104 | preventDefault: function() {
|
3105 | 3105 | this.isDefaultPrevented = returnTrue;
|
@@ -3701,7 +3701,7 @@ jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblcl
|
3701 | 3701 | * Sizzle CSS Selector Engine
|
3702 | 3702 | * Copyright 2011, The Dojo Foundation
|
3703 | 3703 | * Released under the MIT, BSD, and GPL Licenses.
|
3704 |
| - * More information: http://sizzlejs.com/ |
| 3704 | + * More information: https://sizzlejs.com/ |
3705 | 3705 | */
|
3706 | 3706 | (function(){
|
3707 | 3707 |
|
@@ -5343,7 +5343,7 @@ jQuery.each({
|
5343 | 5343 | // The variable 'args' was introduced in
|
5344 | 5344 | // https://github.com/jquery/jquery/commit/52a0238
|
5345 | 5345 | // to work around a bug in Chrome 10 (Dev) and should be removed when the bug is fixed.
|
5346 |
| - // http://code.google.com/p/v8/issues/detail?id=1050 |
| 5346 | + // https://code.google.com/p/v8/issues/detail?id=1050 |
5347 | 5347 | args = slice.call(arguments);
|
5348 | 5348 |
|
5349 | 5349 | if ( !runtil.test( name ) ) {
|
@@ -7839,7 +7839,7 @@ if ( jQuery.support.ajax ) {
|
7839 | 7839 |
|
7840 | 7840 | // Firefox throws exceptions when accessing properties
|
7841 | 7841 | // of an xhr when a network error occured
|
7842 |
| - // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) |
| 7842 | + // https://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) |
7843 | 7843 | try {
|
7844 | 7844 |
|
7845 | 7845 | // Was never called and is aborted or complete
|
|
0 commit comments