Updated to the latest iteration of the sales tracking app; Added some temporary photos for UBS.

This commit is contained in:
Wynne Crisman
2016-10-03 11:00:49 -07:00
parent 105e657b35
commit 20ffd82abb
25 changed files with 7709 additions and 156 deletions

View File

@@ -72,6 +72,9 @@ var models = require("./models");
//Setup initial database data.
require('./app/initialData.js')(models.sequelize);
//Setup the brainstorm communications system.
require('./brainstorm.js')(app, models.sequelize);
//Ensure we have an endsWith method in String.
String.prototype.endsWith = function(suffix) {
return this.indexOf(suffix, this.length - suffix.length) !== -1;