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

Commit

Permalink
Merge pull request #32 from SpringRoll/bugfix/invalid-jade
Browse files Browse the repository at this point in the history
Bugfix/invalid jade
  • Loading branch information
chipbell4 authored Aug 21, 2018
2 parents 2bf22a9 + 8bdb199 commit 0955cd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions app/views/games/releases.jade
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ append gameContent
button.btn.btn-default.btn-block.status.dropdown-toggle(data-toggle="dropdown")
span.bullet
span.name=release.status.toUpperCase()
|
span.caret
ul.dropdown-menu.statusChange-menu
li(class=(release.status == "dev" ? "active" : ""))
Expand Down Expand Up @@ -59,14 +58,12 @@ append gameContent
span.glyphicon.glyphicon-play
a.btn.btn-sm.btn-default.external(data-toggle="tooltip" title="Debug" href="//#{host}/embed/#{game.slug}?version=#{release.version}&debug=1&controls=1&title=1&token=#{token}")
span.glyphicon.glyphicon-wrench
|
span.glyphicon.glyphicon-play
else
a.btn.btn-sm.btn-default.external(data-toggle="tooltip" title="Release" href="//#{host}/embed/#{game.slug}?commitId=#{release.commitId}&controls=1&title=1&token=#{token}")
span.glyphicon.glyphicon-play
a.btn.btn-sm.btn-default.external(data-toggle="tooltip" title="Debug" href="//#{host}/embed/#{game.slug}?commitId=#{release.commitId}&debug=1&controls=1&title=1&token=#{token}")
span.glyphicon.glyphicon-wrench
|
span.glyphicon.glyphicon-play
.col-sm-9: .row: .col-sm-12
if release.version
Expand All @@ -87,4 +84,4 @@ append gameContent
if release.updatedBy
| by #{release.updatedBy.name}
if release.notes
p!= marked(release.notes)
p!= marked(release.notes)
1 change: 1 addition & 0 deletions seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
var dotenv = require('dotenv');
dotenv.load();
process.env.MONGO_DATABASE = 'mongodb://localhost:27017/connect';
process.env.OUTPUT_LOG = './log.txt';

// create a password
var crypto = require('crypto');
Expand Down

0 comments on commit 0955cd2

Please sign in to comment.