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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt (-2 / +1 lines)
Lines 134-140 $(document).ready(function() { Link Here
134
134
135
            if($(myListBox).find('option').length > 0) {
135
            if($(myListBox).find('option').length > 0) {
136
                $(myListBox).find('option').each( function (){
136
                $(myListBox).find('option').each( function (){
137
                    if ( $(this).attr('selected') ) {
137
                    if ( $(this).attr('selected') && $(this).val().length > 0 ) {
138
                        $(myQuery).insertAtCaret("<<" + $(this).val() + ">>");
138
                        $(myQuery).insertAtCaret("<<" + $(this).val() + ">>");
139
                    }
139
                    }
140
                });
140
                });
141
- 

Return to bug 1859