Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskaschulz committed Jun 7, 2016
1 parent ba14600 commit 97a169d
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions developer-guides/how-to-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -632,29 +632,14 @@ In this case we want to add the option to apply a different background color to
section: {
label: 'Theme',
icon: 'pk-icon-large-brush',
priority: 15
priority: 90
},
data: function () {
return _.extend({config: {}}, window.$theme);
},
events: {
save: function() {
this.$http.post('admin/system/settings/config', {name: this.name, config: this.config}).catch(function (res) {
this.$notify(res.data, 'danger');
});
}
}
props: ['node']
};
window.Site.components['site-theme'] = module.exports;
window.Site.components['node-theme'] = module.exports;
</script>
```
Expand Down

0 comments on commit 97a169d

Please sign in to comment.