Skip to content

Commit

Permalink
Added semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmerfield committed Mar 12, 2018
1 parent 12dedb5 commit f4b1312
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/site/index.js
Expand Up @@ -28,7 +28,8 @@ site.locals.protocol = config.protocol;
site.locals.price = '$' + config.stripe.plan.slice(-2);

var views = __dirname + '/views/';
var dashboard_views = require('helper').rootDir + '/app/dashboard/views/partials/'
var dashboard_views = require('helper').rootDir + '/app/dashboard/views/partials/';

site.use(function (req, res, next) {

if (!req.user) {
Expand All @@ -38,7 +39,7 @@ site.use(function (req, res, next) {
header: views + '_header',
sidebar: views + '_sidebar',
footer: views + '_footer'
}
};

} else {

Expand Down

0 comments on commit f4b1312

Please sign in to comment.