Skip to content

Commit f12fbdc

Browse files
committed
Use secure links.
1 parent db9783e commit f12fbdc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Nuclear.Store({
6565
## 1.0.5 (June 4, 2015)
6666

6767
- **[NEW]** Configured linting using [eslint](http://eslint.org/). Linting is now part of the [contributing process](https://github.com/optimizely/nuclear-js/blob/master/CONTRIBUTING.md). Eslint can be run using: `grunt eslint`
68-
- **[NEW]** Implemented new developer docs landing page. This website is still in beta. You can view it here: http://optimizely.github.io/nuclear-js/
68+
- **[NEW]** Implemented new developer docs landing page. This website is still in beta. You can view it here: https://optimizely.github.io/nuclear-js/
6969
- **[FIXED]** Removed accidentally checked in node_modules directory.
7070
- **[FIXED]** Addressed all the lint warnings and errors in the codebase using the new rules in `.eslintrc`
7171
- **[FIXED]** Updated documentation.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Welcome to NuclearJS!
44
If you are reading this, it probably means that you are interested in contributing to this awesome open source project.
55
To make the process of contributing more straightforward, we have prepared this guideline for you.
6-
To learn more about NuclearJS, check out our new [developer website!](http://optimizely.github.io/nuclear-js/)
6+
To learn more about NuclearJS, check out our new [developer website!](https://optimizely.github.io/nuclear-js/)
77

88
## Development Setup
99

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Traditional Flux architecture built with ImmutableJS data structures.
1010

1111
## Documentation
1212

13-
[http://optimizely.github.io/nuclear-js/](http://optimizely.github.io/nuclear-js/)
13+
[https://optimizely.github.io/nuclear-js/](https://optimizely.github.io/nuclear-js/)
1414

1515
## Design Philosophy
1616

docs/src/docs/01-getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ In this tutorial we'll create a Nuclear flux system to show a list of products a
3434
1. Although the example code is written using ES6, this is totally optional. NuclearJS fully supports ES5 out of the box.
3535

3636
2. Nuclear stores work best when using ImmutableJS data structures. You will see `toImmutable` quite often, this is simply sugar
37-
to convert plain JavaScript arrays into [`Immutable.List`](http://facebook.github.io/immutable-js/docs/#/List) and objects to
38-
[`Immutable.Map`](http://facebook.github.io/immutable-js/docs/#/Map). The use of `toImmutable` is optional, you are free to use
37+
to convert plain JavaScript arrays into [`Immutable.List`](https://facebook.github.io/immutable-js/docs/#/List) and objects to
38+
[`Immutable.Map`](https://facebook.github.io/immutable-js/docs/#/Map). The use of `toImmutable` is optional, you are free to use
3939
any ImmutableJS data structure with no penalty.
4040

4141

docs/src/docs/99-core-concepts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ var totalGetter = [
8282

8383
Notice that you can use getters as dependencies to other getters. This is an extremely powerful abstraction, and one that you'll undoubtedly want to become familiar with in your nuclear journey.
8484

85-
But you need to know one thing about getter transform functions - they MUST be pure functions (that is, a given set input values results in a [deterministic](http://en.wikipedia.org/wiki/Deterministic_algorithm) output). By making the transform functions pure, you can test Getters easier, compose them easier, and nuclear can [memoize](http://en.wikipedia.org/wiki/Memoization) calls to them, making Getter dependency resolution very performant.
85+
But you need to know one thing about getter transform functions - they MUST be pure functions (that is, a given set input values results in a [deterministic](https://en.wikipedia.org/wiki/Deterministic_algorithm) output). By making the transform functions pure, you can test Getters easier, compose them easier, and nuclear can [memoize](https://en.wikipedia.org/wiki/Memoization) calls to them, making Getter dependency resolution very performant.
8686

8787
__For the astute reader__ - You probably already noticed if you have experience in functional languages, but because Getters
8888
are simply arrays full of strings and pure functions, they are serializable. Since JS can stringify pure functions, your getters are nothing more than data that could be stored, sent over the wire, etc.

0 commit comments

Comments
 (0)