2018-03-24 00:28:29 +08:00

21 lines
538 B
JavaScript

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: `<p>${app.content}</p>`,
buttons: {
ok: {
label: 'OK',
className: 'btn-info'
}
}
});
}
}
});