Browse Source

Merge pull request #21184 from Mugen87/dev48

Use HTTPS instead of HTTP.
Mr.doob 4 years ago
parent
commit
5ad3317bf2
4 changed files with 5 additions and 5 deletions
  1. 2 2
      README.md
  2. 1 1
      docs/index.html
  3. 1 1
      editor/js/Menubar.Help.js
  4. 1 1
      examples/webgl_loader_texture_lottie.html

+ 2 - 2
README.md

@@ -11,8 +11,8 @@ three.js
 
 
 The aim of the project is to create an easy to use, lightweight, 3D library with a default WebGL renderer. The library also provides Canvas 2D, SVG and CSS3D renderers in the examples.
 The aim of the project is to create an easy to use, lightweight, 3D library with a default WebGL renderer. The library also provides Canvas 2D, SVG and CSS3D renderers in the examples.
 
 
-[Examples](http://threejs.org/examples/) —
-[Documentation](http://threejs.org/docs/) —
+[Examples](https://threejs.org/examples/) —
+[Documentation](https://threejs.org/docs/) —
 [Wiki](https://github.com/mrdoob/three.js/wiki) —
 [Wiki](https://github.com/mrdoob/three.js/wiki) —
 [Migrating](https://github.com/mrdoob/three.js/wiki/Migration-Guide) —
 [Migrating](https://github.com/mrdoob/three.js/wiki/Migration-Guide) —
 [Questions](http://stackoverflow.com/questions/tagged/three.js) —
 [Questions](http://stackoverflow.com/questions/tagged/three.js) —

+ 1 - 1
docs/index.html

@@ -13,7 +13,7 @@
 		<div id="panel">
 		<div id="panel">
 
 
 			<div id="header">
 			<div id="header">
-				<h1><a href="http://threejs.org">three.js</a></h1>
+				<h1><a href="https://threejs.org">three.js</a></h1>
 
 
 				<div id="sections">
 				<div id="sections">
 					<span class="selected">docs</span>
 					<span class="selected">docs</span>

+ 1 - 1
editor/js/Menubar.Help.js

@@ -47,7 +47,7 @@ function MenubarHelp( editor ) {
 	option.setTextContent( strings.getKey( 'menubar/help/about' ) );
 	option.setTextContent( strings.getKey( 'menubar/help/about' ) );
 	option.onClick( function () {
 	option.onClick( function () {
 
 
-		window.open( 'http://threejs.org', '_blank' );
+		window.open( 'https://threejs.org', '_blank' );
 
 
 	} );
 	} );
 	options.add( option );
 	options.add( option );

+ 1 - 1
examples/webgl_loader_texture_lottie.html

@@ -9,7 +9,7 @@
 	<body>
 	<body>
 
 
 		<div id="info">
 		<div id="info">
-			<a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> webgl - lottie<br/></br>
+			<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> webgl - lottie<br/></br>
 			<input id="scrubber" type="range" value="0" style="width: 300px">
 			<input id="scrubber" type="range" value="0" style="width: 300px">
 		</div>
 		</div>