diff options
author | Bernhard M. Wiedemann <jquerybmw@lsmod.de> | 2016-01-27 09:18:40 +0100 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-27 10:52:43 -0500 |
commit | 1de834672959636da8c06263c3530226b17a84c3 (patch) | |
tree | 7f27d811445504916c24c4b424ad753de4e004db | |
parent | abb571580719328cc5431068bb5519b212f0f043 (diff) | |
download | jquery-1de834672959636da8c06263c3530226b17a84c3.tar.gz jquery-1de834672959636da8c06263c3530226b17a84c3.zip |
Docs: use https where possible
Close gh-2875
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/css/curCSS.js | 2 | ||||
-rw-r--r-- | src/event.js | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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. diff --git a/src/css/curCSS.js b/src/css/curCSS.js index be643ab54..17ea2a9d4 100644 --- a/src/css/curCSS.js +++ b/src/css/curCSS.js @@ -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 diff --git a/src/event.js b/src/event.js index c8a14fe7d..3cf0c3d7c 100644 --- a/src/event.js +++ b/src/event.js @@ -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, |