From 1f4523930c808289953cbd05a250dd8d70013f59 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Fri, 9 Apr 2021 01:05:32 +0200 Subject: [PATCH] =?UTF-8?q?class=20pour=20s=C3=A9lection=20par=20nom=20de?= =?UTF-8?q?=20champ?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/rdd-roll.js | 9 +++++---- templates/dialog-competence.html | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/module/rdd-roll.js b/module/rdd-roll.js index cbc8f5cd..b6d36add 100644 --- a/module/rdd-roll.js +++ b/module/rdd-roll.js @@ -219,14 +219,15 @@ export class RdDRoll extends Dialog { this.rollData.dmg.mortalite = event.currentTarget.checked ? "non-mortel" : "mortel"; this.updateRollResult(); }); - html.find('#tactique-combat').change((event) => { - this.rollData.tactique = event.currentTarget.value; - this.updateRollResult(); - }); html.find('.cuisine-proportions').change((event) => { this.rollData.proportions = Number(event.currentTarget.value); this.updateRollResult(); }); + html.find('.select-by-name').change((event) => { + const attribute = event.currentTarget.attributes['name'].value; + this.rollData[attribute] = event.currentTarget.value; + this.updateRollResult(); + }); html.find('.checkbox-by-name').change((event) => { const attribute = event.currentTarget.attributes['name'].value; this.rollData[attribute] = event.currentTarget.checked; diff --git a/templates/dialog-competence.html b/templates/dialog-competence.html index a2d55743..c4ba4d0e 100644 --- a/templates/dialog-competence.html +++ b/templates/dialog-competence.html @@ -50,7 +50,7 @@ {{else}} -