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 26-33 $(document).ready(function(){ Link Here
26
                    $.each(transports, function(j, transport) {
26
                    $.each(transports, function(j, transport) {
27
                        if (item['transports_' + transport] == 1) {
27
                        if (item['transports_' + transport] == 1) {
28
                            $('#' + transport + attrid).prop('checked', true);
28
                            $('#' + transport + attrid).prop('checked', true);
29
                            toggle_digest(attrid);
29
                        } else {
30
                        } else {
30
                            $('#' + transport + attrid).prop('checked', false);
31
                            $('#' + transport + attrid).prop('checked', false);
32
                            toggle_digest(attrid);
31
                        }
33
                        }
32
                    });
34
                    });
33
                    if (item.digest && item.digest != ' ') {
35
                    if (item.digest && item.digest != ' ') {
34
- 

Return to bug 30175