basic width styling for common cells

This commit is contained in:
kay.one 2013-06-09 22:37:41 -07:00
parent e1de291f8c
commit 6838298dbc
3 changed files with 21 additions and 5 deletions

View file

@ -74,9 +74,11 @@ define(['app', 'Series/SeriesModel'], function () {
json[name] = _.bind(this.mutators[name], this)();
}
}, this));
json.series = this.get('series').toJSON();
if (this.has('series'))
{
json.series = this.get('series').toJSON();
}
return json;
},