9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Object.extend({
|
|
@computed
|
|
isLastVisited: function() {
|
|
return this.lastVisitedTopic === this.topic;
|
|
}
|
|
});
|