Content deleted Content added
Writ Keeper (talk | contribs) fx |
Writ Keeper (talk | contribs) reset selected checkbox when selecting all/none/inv |
||
Line 76:
$(this).prop("checked", true);
});
$("#revdelCP").data("lastSelectedIndex", -1);
}
);
Line 85 ⟶ 86:
$(this).prop("checked", false);
});
$("#revdelCP").data("lastSelectedIndex", -1);
}
);
Line 95 ⟶ 97:
$(this).prop("checked", !($(this).prop("checked")));
});
$("#revdelCP").data("lastSelectedIndex", -1);
}
);
|