cms/app-client/app/components/transcript-section-component.js
author ymh <ymh.work@gmail.com>
Fri, 02 Dec 2016 09:33:53 +0100
changeset 456 3a32d2f57429
parent 454 710a2ae08a74
permissions -rw-r--r--
ember 2.10
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
454
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
import Ember from 'ember';
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
export default Ember.Component.extend({
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
  turns: Ember.computed.readOnly("section.turns"),
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  title: Ember.computed.readOnly("section.title"),
710a2ae08a74 rework transcript component to correct various bugs
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
});