import Ember from 'ember'; import BaseListRoute from './../base-list'; export default BaseListRoute.extend({ breadcrumbs: [{text: 'Customer Application'}], actions: { showContent(app) { this.get('dialog').dialog({ title: app.name, message: `

${app.content}

`, buttons: { ok: { label: 'OK', className: 'btn-info' } } }); } } });