unclean SPARC
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
class CoachingCreditsDialog extends EICDialogContent {
|
||||
|
||||
actions = [
|
||||
{
|
||||
label: 'cancel',
|
||||
onclick: this.cancel.bind(this),
|
||||
severity: 'secondary',
|
||||
role: 'cancel'
|
||||
},
|
||||
{
|
||||
label: 'add',
|
||||
onclick: this.create.bind(this),
|
||||
severity: 'primary',
|
||||
role: 'create'
|
||||
}
|
||||
]
|
||||
|
||||
DOMContentLoaded(options) {
|
||||
ui.eicfy(this.el);
|
||||
}
|
||||
|
||||
|
||||
|
||||
create() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
app.registerClass('CoachingCreditsDialog', CoachingCreditsDialog);
|
||||
Reference in New Issue
Block a user