FIX: Checkboxes weren't always being set properly.

Note to all, `set()` values for computed properties must return the
new value the same as `get()` does.
This commit is contained in:
Robin Ward 2015-08-17 12:12:51 -04:00
parent 73e4c6ae4d
commit d87520a2cf
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ export default Ember.Component.extend(BufferedContent, ScrollTop, {
},
set(value) {
this.set('buffered.value', value ? 'true' : 'false');
return value;
}
},