View | Details | Raw Unified | Return to bug 30175
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/messaging-preference-form.js (-1 / +2 lines)
Lines 30-37 $(document).ready(function(){ Link Here
30
                    $.each(transports, function(j, transport) {
30
                    $.each(transports, function(j, transport) {
31
                        if (item['transports_' + transport] == 1) {
31
                        if (item['transports_' + transport] == 1) {
32
                            $('#' + transport + attrid).prop('checked', true);
32
                            $('#' + transport + attrid).prop('checked', true);
33
                            toggle_digest(attrid);
33
                        } else {
34
                        } else {
34
                            $('#' + transport + attrid).prop('checked', false);
35
                            $('#' + transport + attrid).prop('checked', false);
36
                            toggle_digest(attrid);
35
                        }
37
                        }
36
                    });
38
                    });
37
                    if (item.digest && item.digest != ' ') {
39
                    if (item.digest && item.digest != ' ') {
38
- 

Return to bug 30175