Skip to content

Commit

Permalink
update wzrd.in urls to use https
Browse files Browse the repository at this point in the history
  • Loading branch information
konklone committed Jan 1, 2015
1 parent df9948d commit e4e4b76
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

Try visiting this link:

[/standalone/concat-stream@latest](http://wzrd.in/standalone/concat-stream@latest)
[/standalone/concat-stream@latest](https://wzrd.in/standalone/concat-stream@latest)

Also, [wzrd.in](http://wzrd.in) has a nice url generating form.
Also, [wzrd.in](https://wzrd.in) has a nice url generating form.

## What just happened?

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"scripts": {
"test": "rm -rf ./cdn.db && rm -rf ./test/cdn.db && tap ./test/*.js",
"start": "node ./bin/browserify-cdn",
"index-page": "marked README.md | sed s_http://wzrd.in/standalone/concat-stream@latest_/standalone/concat-stream@latest_ | sed 's_<p>Also, <a href=\"http://wzrd.in\">wzrd.in</a> has a nice url generating form.</p>_<form method=\"get\" id=\"url-generator\"><h3>Or choose a module here:</h3><label>Module:<input type=\"text\" name=\"module\" value=\"concat-stream\" required /></label><label>Version:<input type=\"text\" name=\"ver\" value=\"latest\" required /></label><input type=\"submit\" value=\"Go!\" /></form>_' | exercise-bike --readme :stdin: ./templates/index.handlebars ./public/index.html"
"index-page": "marked README.md | sed s_https://wzrd.in/standalone/concat-stream@latest_/standalone/concat-stream@latest_ | sed 's_<p>Also, <a href=\"https://wzrd.in\">wzrd.in</a> has a nice url generating form.</p>_<form method=\"get\" id=\"url-generator\"><h3>Or choose a module here:</h3><label>Module:<input type=\"text\" name=\"module\" value=\"concat-stream\" required /></label><label>Version:<input type=\"text\" name=\"ver\" value=\"latest\" required /></label><input type=\"submit\" value=\"Go!\" /></form>_' | exercise-bike --readme :stdin: ./templates/index.handlebars ./public/index.html"
},
"devDependencies": {
"marked": "~0.3.0",
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
document.getElementById('url-generator').onsubmit = function() {
module = this.elements["module"].value
ver = this.elements["ver"].value
path = "http://wzrd.in/standalone/" + module + "@" + ver
path = "https://wzrd.in/standalone/" + module + "@" + ver
link = document.createElement('a')
link.href = path
link.target = '_blank'
Expand Down
2 changes: 1 addition & 1 deletion templates/index.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
document.getElementById('url-generator').onsubmit = function() {
module = this.elements["module"].value
ver = this.elements["ver"].value
path = "http://wzrd.in/standalone/" + module + "@" + ver
path = "https://wzrd.in/standalone/" + module + "@" + ver
link = document.createElement('a')
link.href = path
link.target = '_blank'
Expand Down

0 comments on commit e4e4b76

Please sign in to comment.