Renaming site contents to site text

This commit is contained in:
Robin Ward
2014-09-24 14:45:35 -04:00
parent 84cf402482
commit bc53d48bd7
45 changed files with 349 additions and 350 deletions

View File

@@ -4,9 +4,9 @@ export default Ember.ObjectController.extend({
saveDisabled: function() {
if (this.get('saving')) { return true; }
if ((!this.get('content.allow_blank')) && Ember.empty(this.get('content.content'))) { return true; }
if ((!this.get('allow_blank')) && Ember.empty(this.get('value'))) { return true; }
return false;
}.property('saving', 'content.content'),
}.property('saving', 'value'),
actions: {
saveChanges: function() {