cms/app-client/app/components/toolbar-component.js
author ymh <ymh.work@gmail.com>
Tue, 22 Nov 2016 18:33:07 +0100
changeset 433 65e357e5eecb
parent 414 5c6c526a7fc1
permissions -rw-r--r--
correct document permalinks in notice and share buttons

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);
    }

  }

});