#52 Travaux en progres....

This commit is contained in:
2020-12-12 23:41:04 +01:00
parent 808cd7296d
commit e07120aa23
3 changed files with 14 additions and 5 deletions

View File

@ -29,7 +29,7 @@ export class RdDAstrologieJoueur extends Dialog {
constructor(html, actor, data ) {
let myButtons = {
saveButton: { label: "Fermer", callback: html => this.fillData() }
saveButton: { label: "Fermer", callback: html => this.quitDialog() }
};
// Get all n
@ -61,7 +61,7 @@ export class RdDAstrologieJoueur extends Dialog {
}
/* -------------------------------------------- */
fillData() {
quitDialog() {
}
@ -69,9 +69,9 @@ export class RdDAstrologieJoueur extends Dialog {
activateListeners(html) {
super.activateListeners(html);
$(function () {
html.find('#jet-astrologie').click((event) => {
this.requestJetAstrologie();
});
}
}