* New string util method: format()

* Minor work on area list -- WIP!
This commit is contained in:
Bryan Ashby 2015-08-18 17:00:18 -06:00
parent aa820ac0b5
commit aaac4e884b
4 changed files with 44 additions and 5 deletions

View file

@ -33,7 +33,7 @@ function LastCallersModule(options) {
this.rows = 10;
if(this.menuConfig.config) {
if(_.isObject(this.menuConfig.config)) {
if(_.isNumber(this.menuConfig.config.rows)) {
this.rows = Math.max(1, this.menuConfig.config.rows);
}