forked from ScoDoc/ScoDoc
Améliore form bonus
This commit is contained in:
parent
8d453eb42b
commit
dc0c20b56d
@ -86,10 +86,15 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
function update_bonus_description() {
|
function update_bonus_description() {
|
||||||
var query = "/ScoDoc/get_bonus_description/" + $("#configuration_form select")[0].value;
|
let bonus_name = $("#configuration_form select")[0].value;
|
||||||
$.get(query, '', function (data) {
|
if (bonus_name) {
|
||||||
$("#bonus_description").html(data);
|
let query = "/ScoDoc/get_bonus_description/" + bonus_name;
|
||||||
});
|
$.get(query, '', function (data) {
|
||||||
|
$("#bonus_description").html(data);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$("#bonus_description").html("pas de bonus défini");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user