Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions lib/attributes/record_attribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,6 @@ SC.RecordAttribute = SC.Object.extend(
/** @private - Make this look like a property so that `get()` will call it. */
isProperty: YES,

/** @private - Make this look cacheable */
isCacheable: YES,

/** @private - needed for KVO `property()` support */
dependentKeys: [],

Expand All @@ -336,7 +333,7 @@ SC.RecordAttribute = SC.Object.extend(
var attr = this;
var ret = SC.computed(function(key, value) {
return attr.call(this, key, value);
});
}).cacheable();
ret.attr = attr;
return ret ;
}
Expand Down