]> source.dussan.org Git - jquery.git/commitdiff
Docs: use https where possible
authorBernhard M. Wiedemann <jquerybmw@lsmod.de>
Wed, 27 Jan 2016 08:18:40 +0000 (09:18 +0100)
committerTimmy Willison <timmywillisn@gmail.com>
Wed, 27 Jan 2016 15:52:43 +0000 (10:52 -0500)
Close gh-2875

README.md
src/css/curCSS.js
src/event.js

index e96f62586b5273b41c31c32a6cfc9dfa32619591..404a26885e874cfbaef712f81c75b3c128b5a29a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ What you need to build your own jQuery
 
 In order to build jQuery, you need to have the latest Node.js/npm and git 1.7 or later. Earlier versions might work, but are not supported.
 
-For Windows, you have to download and install [git](http://git-scm.com/downloads) and [Node.js](https://nodejs.org/en/download/).
+For Windows, you have to download and install [git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/en/download/).
 
 OS X users should install [Homebrew](http://brew.sh/). Once Homebrew is installed, run `brew install git` to install git,
 and `brew install node` to install Node.js.
index be643ab547c49a286c422b2b18bdf0455249e0c9..17ea2a9d4c7262cff336737060a8a7c4de5c010d 100644 (file)
@@ -26,7 +26,7 @@ function curCSS( elem, name, computed ) {
                // Android Browser returns percentage for some values,
                // but width seems to be reliably pixels.
                // This is against the CSSOM draft spec:
-               // http://dev.w3.org/csswg/cssom/#resolved-values
+               // https://drafts.csswg.org/cssom/#resolved-values
                if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {
 
                        // Remember the original values
index c8a14fe7df3db8df5369f63eec7f05014726eda2..3cf0c3d7c5a868ae026a7699a6162a6035b5b0d3 100644 (file)
@@ -581,7 +581,7 @@ jQuery.Event = function( src, props ) {
 };
 
 // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
-// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
+// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
 jQuery.Event.prototype = {
        constructor: jQuery.Event,
        isDefaultPrevented: returnFalse,