Skip to content

Commit

Permalink
Change double to single quotes, to appease jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
yesezra committed Nov 27, 2013
1 parent 702d19b commit 651492a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ process.env.NODE_ENV = process.env.NODE_ENV || 'development'
module.exports = {
env: process.env.NODE_ENV,
port: port,
app_host_port: "localhost:" + port
app_host_port: 'localhost:' + port
}
2 changes: 1 addition & 1 deletion config/production.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
"app_host_port": "click-that-hood.com"
'app_host_port': 'click-that-hood.com'
}
2 changes: 1 addition & 1 deletion config/staging.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
"app_host_port": "click-that-hood-staging.herokuapp.com"
'app_host_port': 'click-that-hood-staging.herokuapp.com'
}

0 comments on commit 651492a

Please sign in to comment.