unclean SPARC
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<div class="cols-2">
|
||||
<div>
|
||||
<label small>Amount of credits</label>
|
||||
<select eicselect>
|
||||
<option value="3">3 credits</option>
|
||||
<option value="6">6 credits</option>
|
||||
<option value="9">9 credits</option>
|
||||
<option value="15">15 credits</option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<label small>Granularity</label>
|
||||
<select eicselect>
|
||||
<option value="3">3 credits</option>
|
||||
<option value="6">6 credits</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -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