From 3c2a0de89deee0e532815c60ea8de470b705ce5a 2012-09-07 03:51:54 From: Luke Hatcher Date: 2012-09-07 03:51:54 Subject: [PATCH] change attr to prop --- diff --git a/symposion/templates/reviews/result_notification.html b/symposion/templates/reviews/result_notification.html index 6e29faccbf43664e9f2b7062435759b691275019..b5467a06c175e208f882853ce389299d139fa846 100644 --- a/symposion/templates/reviews/result_notification.html +++ b/symposion/templates/reviews/result_notification.html @@ -62,13 +62,13 @@ var options = $.extend({}, $.fn.actions.defaults, opts); var actionCheckboxes = $(this); checker = function(checked) { - $(actionCheckboxes).attr("checked", checked) + $(actionCheckboxes).prop("checked", checked) .parent().parent().toggleClass(options.selectedClass, checked); } updateCounter = function() { var sel = $(actionCheckboxes).filter(":checked").length; $(options.counterContainer).html(sel); - $(options.allToggle).attr("checked", function() { + $(options.allToggle).prop("checked", function() { if (sel == actionCheckboxes.length) { value = true; } else { @@ -83,7 +83,7 @@ updateCounter(); }); $(options.allToggle).click(function() { - checker($(this).attr("checked")); + checker($(this).prop("checked")); updateCounter(); }); lastChecked = null; @@ -92,14 +92,14 @@ var target = event.target ? event.target : event.srcElement; if (lastChecked && $.data(lastChecked) != $.data(target) && event.shiftKey == true) { var inrange = false; - $(lastChecked).attr("checked", target.checked) + $(lastChecked).prop("checked", target.checked) .parent().parent().toggleClass(options.selectedClass, target.checked); $(actionCheckboxes).each(function() { if ($.data(this) == $.data(lastChecked) || $.data(this) == $.data(target)) { inrange = (inrange) ? false : true; } if (inrange) { - $(this).attr("checked", target.checked) + $(this).prop("checked", target.checked) .parent().parent().toggleClass(options.selectedClass, target.checked); } });