gateway groups, tier selection triggers on wrong object.

This commit is contained in:
Ad Schellevis 2017-12-12 11:57:21 +01:00
parent 8e8bb1b871
commit 9005f82230

View File

@ -149,9 +149,9 @@ include("head.inc");
<script type="text/javascript">
$( document ).ready(function() {
// force protocol on initial selection (only relevant for new items)
$(".act-tier-change").change(function(){
$("select.act-tier-change").change(function(){
var proto = $(this).data('proto');
$(".act-tier-change").each(function(){
$("select.act-tier-change").each(function(){
if ($(this).data('proto') != proto) {
$(this).val('0');
}