Skip to content

Commit 52b9793

Browse files
committed
Use HTTPS instead of HTTP for URLs supporting it
1 parent 2388eea commit 52b9793

File tree

19 files changed

+35
-35
lines changed

19 files changed

+35
-35
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# http://editorconfig.org
1+
# https://editorconfig.org
22
root = true
33

44
[*]

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Please consider the following before submitting an issue:
44
- Ask questions and get support on StackOverflow: https://stackoverflow.com/questions/tagged/chart.js
55
- DO NOT create issues for questions or support requests.
66
- Issues are reserved for BUG reports and FEATURE requests.
7-
- Most features should start as plugins outside of Chart.js (http://www.chartjs.org/docs/#advanced-usage-creating-plugins).
8-
- Bug reports MUST be submitted with an interactive example (http://codepen.io/pen?template=JXVYzq).
7+
- Most features should start as plugins outside of Chart.js (https://www.chartjs.org/docs/#advanced-usage-creating-plugins).
8+
- Bug reports MUST be submitted with an interactive example (https://codepen.io/pen?template=JXVYzq).
99
- Chart.js 1.x is NOT supported anymore, new issues will be disregarded.
1010
-->
1111

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Please consider the following before submitting a pull request:
44
Guidelines for contributing: https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md
55
66
Example of changes on an interactive website such as the following:
7-
- http://jsbin.com/
8-
- http://jsfiddle.net/
9-
- http://codepen.io/pen/
10-
- Premade template: http://codepen.io/pen?template=JXVYzq
7+
- https://jsbin.com/
8+
- https://jsfiddle.net/
9+
- https://codepen.io/pen/
10+
- Premade template: https://codepen.io/pen?template=JXVYzq
1111
-->

MAINTAINING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Chart.js relies on [Travis CI](https://travis-ci.org/) to automate the library [
55
### Releasing a New Version
66

77
1. draft release notes on [GitHub](https://github.com/chartjs/Chart.js/releases/new) for the upcoming tag
8-
1. update `master` `package.json` version using [semver](http://semver.org/) semantic
8+
1. update `master` `package.json` version using [semver](https://semver.org/) semantic
99
1. merge `master` into the `release` branch
1010
1. follow the build process on [Travis CI](https://travis-ci.org/chartjs/Chart.js)
1111

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![travis](https://img.shields.io/travis/chartjs/Chart.js.svg?style=flat-square&maxAge=60)](https://travis-ci.org/chartjs/Chart.js) [![coveralls](https://img.shields.io/coveralls/chartjs/Chart.js.svg?style=flat-square&maxAge=600)](https://coveralls.io/github/chartjs/Chart.js?branch=master) [![codeclimate](https://img.shields.io/codeclimate/maintainability/chartjs/Chart.js.svg?style=flat-square&maxAge=600)](https://codeclimate.com/github/chartjs/Chart.js) [![slack](https://img.shields.io/badge/slack-chartjs-blue.svg?style=flat-square&maxAge=3600)](https://chartjs-slack.herokuapp.com/)
44

5-
*Simple HTML5 Charts using the canvas element* [chartjs.org](http://www.chartjs.org)
5+
*Simple HTML5 Charts using the canvas element* [chartjs.org](https://www.chartjs.org)
66

77
## Installation
88

@@ -28,7 +28,7 @@ Files:
2828
* `dist/Chart.js`
2929
* `dist/Chart.min.js`
3030

31-
The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](http://momentjs.com/) before Chart.js for the functionality of the time axis.
31+
The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](https://momentjs.com/) before Chart.js for the functionality of the time axis.
3232

3333
#### Bundled Build
3434
Files:
@@ -39,11 +39,11 @@ The bundled build includes Moment.js in a single file. You should use this versi
3939

4040
## Documentation
4141

42-
You can find documentation at [www.chartjs.org/docs](http://www.chartjs.org/docs). The markdown files that build the site are available under `/docs`. Previous version documentation is available at [www.chartjs.org/docs/latest/developers/#previous-versions](http://www.chartjs.org/docs/latest/developers/#previous-versions).
42+
You can find documentation at [www.chartjs.org/docs](https://www.chartjs.org/docs). The markdown files that build the site are available under `/docs`. Previous version documentation is available at [www.chartjs.org/docs/latest/developers/#previous-versions](https://www.chartjs.org/docs/latest/developers/#previous-versions).
4343

4444
## Contributing
4545

46-
Before submitting an issue or a pull request, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md) first. For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](http://stackoverflow.com/questions/tagged/chartjs).
46+
Before submitting an issue or a pull request, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md) first. For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](https://stackoverflow.com/questions/tagged/chartjs).
4747

4848
## Building
4949
Instructions on building and testing Chart.js can be found in [the documentation](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md#building-and-testing).
@@ -54,4 +54,4 @@ Instructions on building and testing Chart.js can be found in [the documentation
5454

5555
## License
5656

57-
Chart.js is available under the [MIT license](http://opensource.org/licenses/MIT).
57+
Chart.js is available under the [MIT license](https://opensource.org/licenses/MIT).

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"chart",
77
"js"
88
],
9-
"homepage": "http://www.chartjs.org/",
9+
"homepage": "https://www.chartjs.org/",
1010
"license": "MIT",
1111
"authors": [
1212
{

docs/developers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Latest builds are available for testing at:
1616
- https://www.chartjs.org/dist/master/Chart.min.js
1717
- https://www.chartjs.org/dist/master/Chart.bundle.min.js
1818

19-
> Note: Development builds are currently only available via HTTP, so in order to include them in [JSFiddle](http://jsfiddle.net) or [CodePen](http://codepen.io), you need to access these tools via HTTP as well.
19+
> Note: Development builds are currently only available via HTTP, so in order to include them in [JSFiddle](https://jsfiddle.net) or [CodePen](https://codepen.io), you need to access these tools via HTTP as well.
2020
2121
**WARNING: Development builds MUST not be used for production purposes or as replacement for CDN.**
2222

samples/charts/scatter/basic.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
return data;
3333
}
34-
34+
3535
var scatterChartData = {
3636
datasets: [{
3737
label: 'My First dataset',

samples/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<div class="chartjs-title">Samples</div>
1717
<div class="chartjs-caption">Simple yet flexible JavaScript charting for designers &amp; developers</div>
1818
<div class="chartjs-links">
19-
<a class="btn btn-chartjs" href="http://www.chartjs.org">Website</a>
20-
<a class="btn btn-docs" href="http://www.chartjs.org/docs">Documentation</a>
19+
<a class="btn btn-chartjs" href="https://www.chartjs.org">Website</a>
20+
<a class="btn btn-docs" href="https://www.chartjs.org/docs">Documentation</a>
2121
<a class="btn btn-gh" href="https://github.com/chartjs/Chart.js">GitHub</a>
2222
</div>
2323
</div>

src/core/core.helpers.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ module.exports = function() {
405405

406406
return niceFraction * Math.pow(10, exponent);
407407
};
408-
// Request animation polyfill - http://www.paulirish.com/2011/requestanimationframe-for-smart-animating/
408+
// Request animation polyfill - https://www.paulirish.com/2011/requestanimationframe-for-smart-animating/
409409
helpers.requestAnimFrame = (function() {
410410
if (typeof window === 'undefined') {
411411
return function(callback) {
@@ -440,7 +440,7 @@ module.exports = function() {
440440

441441
// Scale mouse coordinates into canvas coordinates
442442
// by following the pattern laid out by 'jerryj' in the comments of
443-
// http://www.html5canvastutorials.com/advanced/html5-canvas-mouse-coordinates/
443+
// https://www.html5canvastutorials.com/advanced/html5-canvas-mouse-coordinates/
444444
var paddingLeft = parseFloat(helpers.getStyle(canvas, 'padding-left'));
445445
var paddingTop = parseFloat(helpers.getStyle(canvas, 'padding-top'));
446446
var paddingRight = parseFloat(helpers.getStyle(canvas, 'padding-right'));
@@ -489,7 +489,7 @@ module.exports = function() {
489489
// @param domNode : the node to check the constraint on
490490
// @param maxStyle : the style that defines the maximum for the direction we are using (maxWidth / maxHeight)
491491
// @param percentageProperty : property of parent to use when calculating width as a percentage
492-
// @see http://www.nathanaeljones.com/blog/2013/reading-max-width-cross-browser
492+
// @see https://www.nathanaeljones.com/blog/2013/reading-max-width-cross-browser
493493
function getConstraintDimension(domNode, maxStyle, percentageProperty) {
494494
var view = document.defaultView;
495495
var parentNode = helpers._getParentNode(domNode);

0 commit comments

Comments
 (0)