@@ -542,7 +542,7 @@ var Sizzle =
542
542
*
543
543
* Copyright jQuery Foundation and other contributors
544
544
* Released under the MIT license
545
- * http ://jquery.org/license
545
+ * https ://jquery.org/license
546
546
*
547
547
* Date: 2016-08-08
548
548
*/
@@ -609,13 +609,13 @@ var i,
609
609
610
610
// Regular expressions
611
611
612
- // http ://www.w3.org/TR/css3-selectors/#whitespace
612
+ // https ://www.w3.org/TR/css3-selectors/#whitespace
613
613
whitespace = "[\\x20\\t\\r\\n\\f]" ,
614
614
615
- // http ://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
615
+ // https ://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
616
616
identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+" ,
617
617
618
- // Attribute selectors: http ://www.w3.org/TR/selectors/#attribute-selectors
618
+ // Attribute selectors: https ://www.w3.org/TR/selectors/#attribute-selectors
619
619
attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
620
620
// Operator (capture 2)
621
621
"*([*^$|!~]?=)" + whitespace +
@@ -672,7 +672,7 @@ var i,
672
672
rsibling = / [ + ~ ] / ,
673
673
674
674
// CSS escapes
675
- // http ://www.w3.org/TR/CSS21/syndata.html#escaped-characters
675
+ // https ://www.w3.org/TR/CSS21/syndata.html#escaped-characters
676
676
runescape = new RegExp ( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)" , "ig" ) ,
677
677
funescape = function ( _ , escaped , escapedWhitespace ) {
678
678
var high = "0x" + escaped - 0x10000 ;
@@ -1308,7 +1308,7 @@ setDocument = Sizzle.setDocument = function( node ) {
1308
1308
}
1309
1309
1310
1310
// Webkit/Opera - :checked should return selected option elements
1311
- // http ://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1311
+ // https ://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1312
1312
// IE8 throws error here and will not see later tests
1313
1313
if ( ! el . querySelectorAll ( ":checked" ) . length ) {
1314
1314
rbuggyQSA . push ( ":checked" ) ;
@@ -1919,7 +1919,7 @@ Expr = Sizzle.selectors = {
1919
1919
1920
1920
"PSEUDO" : function ( pseudo , argument ) {
1921
1921
// pseudo-class names are case-insensitive
1922
- // http ://www.w3.org/TR/selectors/#pseudo-classes
1922
+ // https ://www.w3.org/TR/selectors/#pseudo-classes
1923
1923
// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
1924
1924
// Remember that setFilters inherits from pseudos
1925
1925
var args ,
@@ -2006,7 +2006,7 @@ Expr = Sizzle.selectors = {
2006
2006
// or beginning with the identifier C immediately followed by "-".
2007
2007
// The matching of C against the element's language value is performed case-insensitively.
2008
2008
// The identifier C does not have to be a valid language name."
2009
- // http ://www.w3.org/TR/selectors/#lang-pseudo
2009
+ // https ://www.w3.org/TR/selectors/#lang-pseudo
2010
2010
"lang" : markFunction ( function ( lang ) {
2011
2011
// lang value must be a valid identifier
2012
2012
if ( ! ridentifier . test ( lang || "" ) ) {
@@ -2048,7 +2048,7 @@ Expr = Sizzle.selectors = {
2048
2048
2049
2049
"checked" : function ( elem ) {
2050
2050
// In CSS3, :checked should return both checked and selected elements
2051
- // http ://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
2051
+ // https ://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
2052
2052
var nodeName = elem . nodeName . toLowerCase ( ) ;
2053
2053
return ( nodeName === "input" && ! ! elem . checked ) || ( nodeName === "option" && ! ! elem . selected ) ;
2054
2054
} ,
@@ -2065,7 +2065,7 @@ Expr = Sizzle.selectors = {
2065
2065
2066
2066
// Contents
2067
2067
"empty" : function ( elem ) {
2068
- // http ://www.w3.org/TR/selectors/#empty-pseudo
2068
+ // https ://www.w3.org/TR/selectors/#empty-pseudo
2069
2069
// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
2070
2070
// but not by others (comment: 8; processing instruction: 7; etc.)
2071
2071
// nodeType < 6 works because attributes (2) do not appear as children
@@ -7442,7 +7442,7 @@ jQuery.fx.speeds = {
7442
7442
7443
7443
7444
7444
// Based off of the plugin by Clint Helfers, with permission.
7445
- // https://web.archive.org/web/20100324014747/http ://blindsignals.com/index.php/2009/07/jquery-delay/
7445
+ // https://web.archive.org/web/20100324014747/https ://blindsignals.com/index.php/2009/07/jquery-delay/
7446
7446
jQuery . fn . delay = function ( time , type ) {
7447
7447
time = jQuery . fx ? jQuery . fx . speeds [ time ] || time : time ;
7448
7448
type = type || "fx" ;
@@ -7667,7 +7667,7 @@ jQuery.extend( {
7667
7667
// Support: IE <=9 - 11 only
7668
7668
// elem.tabIndex doesn't always return the
7669
7669
// correct value when it hasn't been explicitly set
7670
- // https://web.archive.org/web/20141116233347/http ://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
7670
+ // https://web.archive.org/web/20141116233347/https ://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
7671
7671
// Use proper attribute retrieval(#12072)
7672
7672
var tabindex = jQuery . find . attr ( elem , "tabindex" ) ;
7673
7673
@@ -8309,7 +8309,7 @@ support.focusin = "onfocusin" in window;
8309
8309
//
8310
8310
// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
8311
8311
// focus(in | out) events fire after focus & blur events,
8312
- // which is spec violation - http ://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
8312
+ // which is spec violation - https ://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
8313
8313
// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
8314
8314
if ( ! support . focusin ) {
8315
8315
jQuery . each ( { focus : "focusin" , blur : "focusout" } , function ( orig , fix ) {
@@ -9018,7 +9018,7 @@ jQuery.extend( {
9018
9018
9019
9019
// Support: IE <=8 - 11, Edge 12 - 13
9020
9020
// IE throws exception on accessing the href property if url is malformed,
9021
- // e.g. http ://example.com:80x/
9021
+ // e.g. https ://example.com:80x/
9022
9022
try {
9023
9023
urlAnchor . href = s . url ;
9024
9024
0 commit comments