AADS#52278 typo; haakje sluiten te weinig (of haakje openen teveel)

svn path=/Website/trunk/; revision=37060
This commit is contained in:
2018-02-19 15:40:40 +00:00
parent df5fe7798c
commit 72b66400de

View File

@@ -19,23 +19,27 @@ function init_stdmelding()
onChangeHighprioritytime();
onChangeLowprioritytime()
var init_srtdisc_key = (srtdisc_key && srtdisc_key > -1 ? srtdisc_key : 0);
if (typeof srtdisc_key == "undefined") var srtdisc_key = -1;
if (typeof disc_key == "undefined") var disc_key = -1;
var init_srtdisc_key = (srtdisc_key > -1 ? srtdisc_key : 0);
var init_disc_key = (disc_key ? disc_key : -1);
fill_disciplineselector(init_srtdisc_key, init_disc_key);
fill_issuetypeselector(0, 0);
}
function onChangeAccepttime()
{
$("#accepttime_eenheid").prop("disabled", (isNaN(parseFloat($("#accepttime").val())));
$("#accepttime_eenheid").prop("disabled", isNaN(parseFloat($("#accepttime").val())));
}
function onChangeCriticaltime()
{
$("#criticaltime_eenheid").prop("disabled", (isNaN(parseFloat($("#criticaltime").val())));
$("#criticaltime_eenheid").prop("disabled", isNaN(parseFloat($("#criticaltime").val())));
}
function onChangeHighprioritytime()
{
$("#highprioritytime_eenheid").prop("disabled", (isNaN(parseFloat($("#highprioritytime").val())));
$("#highprioritytime_eenheid").prop("disabled", isNaN(parseFloat($("#highprioritytime").val())));
}
function onChangeLowprioritytime()
{