PHRAS-941 - fix old jquery selector for selected and checked, fix jquery migrate url call

This commit is contained in:
Florian BLOUET
2016-02-10 19:26:01 +01:00
committed by Benoît Burnichon
parent 0815de0d21
commit 30b141a4ec
4 changed files with 8 additions and 8 deletions

View File

@@ -315,7 +315,7 @@ function showOption(domInput) {
}
function removeChecked(domInput) {
domInput.closest("form").find('input:radio:visible:checked').removeAttr("checked");
domInput.closest("form").find('input:radio:visible:checked').prop("checked", false);
}
function tableLinkAction(domLink) {
var cl = domLink.attr("id");