cms/app-client/app/helpers/author.js
author ymh <ymh.work@gmail.com>
Fri, 02 Dec 2016 03:30:51 +0100
changeset 455 a8bed1c7df8e
parent 210 08ad36c693b1
permissions -rw-r--r--
move the transcript highlight and autoscroll logic to the base component

import Ember from 'ember';

export function author(params) {
	if(params[0]) {
		return 'par ' + params[0].join(', ');
	}
	return;
}

export default Ember.Helper.helper(author);