forked from public/foundryvtt-reve-de-dragon
minor cleanup
This commit is contained in:
@ -116,10 +116,10 @@ export class AppAstrologie extends Application {
|
||||
super.activateListeners(html);
|
||||
this.html = html;
|
||||
this.html.find('select[name="signe-astral"]').change(event => {
|
||||
this.selectNombreAstral(this.html.find('select[name="signe-astral"]').val());
|
||||
this.selectNombreAstral(event.currentTarget.value);
|
||||
})
|
||||
this.html.find('select[name="signe-naissance"]').change(event => {
|
||||
this.selectHeureNaissance(this.html.find('select[name="signe-naissance"]').val());
|
||||
this.selectHeureNaissance(event.currentTarget.value);
|
||||
})
|
||||
this.html.find('td.nombre-astral').click(event => {
|
||||
this.selectNombreAstral(Number.parseInt(event.currentTarget.attributes['data-nombre-astral'].value) - 1);
|
||||
|
Reference in New Issue
Block a user