Deselection of selected team was not possible
Core WP jquery upgrade was causing this
This commit is contained in:
@@ -40,7 +40,7 @@ jQuery(document).ready(function($){
|
|||||||
// Radio input toggle
|
// Radio input toggle
|
||||||
$(".sp-radio-toggle").click(function() {
|
$(".sp-radio-toggle").click(function() {
|
||||||
if($(this).data("sp-checked")) {
|
if($(this).data("sp-checked")) {
|
||||||
$(this).attr("checked", false );
|
$(this).prop("checked", false );
|
||||||
$(this).data("sp-checked", false );
|
$(this).data("sp-checked", false );
|
||||||
} else {
|
} else {
|
||||||
$(this).data("sp-checked", true );
|
$(this).data("sp-checked", true );
|
||||||
|
|||||||
Reference in New Issue
Block a user