fix take over of reviewer, approver

the javascript call to update the reviewer, approval selection was not
updated to select2
This commit is contained in:
Uwe Steinmann 2016-12-01 08:23:52 +01:00
parent b830eb5c37
commit bbf4caa8c8

View File

@ -1660,7 +1660,8 @@ $(document).ready( function() {
for(var i in arr) {
$("#"+target+" option[value='"+arr[i]+"']").attr("selected", "selected");
}
$("#"+target).trigger("chosen:updated");
// $("#"+target).trigger("chosen:updated");
$("#"+target).trigger("change");
}
});
});