Skip to content

Commit

Permalink
Moved flags to conf/generals.js (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdanciobanu committed May 17, 2013
1 parent 703392e commit 168575b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion app/conf/general.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ App.general = {
SVG_PATH: '/public/svg',
ENVIRONMENT: 'testing',

USE_BRANDING = false;
EXTRA_BRANDING =["/assets/custom.css"];

// Throw exceptions and don't catch them with our wrapper
// so that we can debug them easier.
THROW_UNCAUGHT_EXCEPTIONS: true,
Expand Down Expand Up @@ -52,4 +55,4 @@ if (App.general.ENVIRONMENT !== 'production')

if (typeof module != 'undefined') {
module.exports.general = App.general;
}
}
2 changes: 0 additions & 2 deletions app/includes.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/*
* Include CSS and JS files utilities, with or without IE support.
*/
EXTRA_BRANDING =["/assets/custom.css"];
USE_BRANDING = false;
function includeJsFile(file) {
document.write('<script type="text/javascript" src="' +
file + '"><\/sc' + 'ript/>');
Expand Down

0 comments on commit 168575b

Please sign in to comment.