cms/app-client/app/components/toolbar-component.js
author ymh <ymh.work@gmail.com>
Mon, 03 Oct 2016 16:32:41 +0200
changeset 318 5564f5065f81
parent 254 a7cf2887e993
child 373 e952c8a31a2b
permissions -rw-r--r--
add a root url for corpus back apis. it is set to the same than root api for the moment

import Ember from 'ember';

export default Ember.Component.extend({

	player: Ember.inject.service(),

	classNames: ['toolbar-component'],

	actions: {

		display: function(el) {
			this.get('player').displayAdditionalInformation(el);
		}

	}

});