From 1de834672959636da8c06263c3530226b17a84c3 Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" Date: Wed, 27 Jan 2016 09:18:40 +0100 Subject: [PATCH] Docs: use https where possible Close gh-2875 --- README.md | 2 +- src/css/curCSS.js | 2 +- src/event.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e96f62586..404a26885 100644 --- 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. 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, -- 2.39.5