Skip to content

Commit

Permalink
Fix operator precedence
Browse files Browse the repository at this point in the history
Reapplies to:
* OpenUserJS#434
* OpenUserJS#431

Eventually this test should go away when @Zren takes the necessary time to reinstall his Windows machine instead of making a personal exception since his machine is misconfigured.
  • Loading branch information
Martii committed Nov 21, 2014
1 parent 8864fcc commit e05570b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ app.set('views', __dirname + '/views');

// Setup minification
// Order is important here as Ace will fail with an invalid content encoding issue
if (minify && isPro || isDev) {
if (minify && (isPro || isDev)) {
app.use(minify());
}

Expand Down

0 comments on commit e05570b

Please sign in to comment.