Changeset - 3c2a0de89dee
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-09-07 03:51:54
lukeman@gmail.com
change attr to prop
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
symposion/templates/reviews/result_notification.html
Show inline comments
...
 
@@ -64,3 +64,3 @@
 
                checker = function(checked) {
 
                    $(actionCheckboxes).attr("checked", checked)
 
                    $(actionCheckboxes).prop("checked", checked)
 
                        .parent().parent().toggleClass(options.selectedClass, checked);
...
 
@@ -70,3 +70,3 @@
 
                    $(options.counterContainer).html(sel);
 
                    $(options.allToggle).attr("checked", function() {
 
                    $(options.allToggle).prop("checked", function() {
 
                        if (sel == actionCheckboxes.length) {
...
 
@@ -85,3 +85,3 @@
 
                $(options.allToggle).click(function() {
 
                    checker($(this).attr("checked"));
 
                    checker($(this).prop("checked"));
 
                    updateCounter();
...
 
@@ -94,3 +94,3 @@
 
                        var inrange = false;
 
                        $(lastChecked).attr("checked", target.checked)
 
                        $(lastChecked).prop("checked", target.checked)
 
                            .parent().parent().toggleClass(options.selectedClass, target.checked);
...
 
@@ -101,3 +101,3 @@
 
                            if (inrange) {
 
                                $(this).attr("checked", target.checked)
 
                                $(this).prop("checked", target.checked)
 
                                    .parent().parent().toggleClass(options.selectedClass, target.checked);
0 comments (0 inline, 0 general)