Can choose categories or latest as homepage style

This commit is contained in:
Robin Ward
2016-09-21 16:09:18 -04:00
parent 05514070bb
commit 14bee641aa
11 changed files with 346 additions and 120 deletions

View File

@ -13,6 +13,13 @@ const Wizard = Ember.Object.extend({
return titleStep.get('fieldsById.title.value');
},
getLogoUrl() {
const logoStep = this.get('steps').findProperty('id', 'logos');
if (!logoStep) { return; }
return logoStep.get('fieldsById.logo_url.value');
},
// A bit clunky, but get the current colors from the appropriate step
getCurrentColors() {
const colorStep = this.get('steps').findProperty('id', 'colors');