Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 754bbad

Browse files
authored
Merge pull request #35 from SpringRoll/bugfix/http-in-template
Fixing some missing https references
2 parents 5d34044 + 75a1d01 commit 754bbad

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/views/install.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ block body
3838
.col-sm-9
3939
input.form-control(type="text" id="mongoDatabase" name="mongoDatabase" placeholder="mongodb://localhost/springroll")
4040
p.help-block The MongoDB connection,
41-
a(href="http://docs.mongodb.org/manual/reference/connection-string/") see docs
41+
a(href="https://docs.mongodb.org/manual/reference/connection-string/") see docs
4242
| for more info.
4343
.form-group
4444
label.control-label.col-sm-3(for="secretKey") Session Secret
@@ -91,4 +91,4 @@ block body
9191
input.form-control#confirm(type='password' name='confirm' placeholder='******')
9292
.form-group.form-actions.text-center
9393
.col-sm-9.col-sm-offset-3
94-
button.btn.btn-lg.btn-primary(type='submit') Install
94+
button.btn.btn-lg.btn-primary(type='submit') Install

app/views/templates/base.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ html
1010

1111
link(href="/css/libraries.css?v=#{version}", rel="stylesheet")
1212
link(href="/css/main.css?v=#{version}", rel="stylesheet")
13-
link(rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600")
13+
link(rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600")
1414

1515
block header
1616

@@ -19,4 +19,4 @@ html
1919
script(src="/js/libraries.js?v=#{version}")
2020
script(src="/js/main.js?v=#{version}")
2121

22-
block footer
22+
block footer

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.5.3",
2+
"version": "1.5.4",
33
"private": true,
44
"devDependencies": {
55
"glob": "^7.1.2",

0 commit comments

Comments
 (0)