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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-6 / +4 lines)
Lines 1199-1210 Link Here
1199
                [% END %]
1199
                [% END %]
1200
            [% END %]
1200
            [% END %]
1201
1201
1202
            $(".patron-attributes").on( 'click', '.clear-attribute', function() {
1202
            $(".patron-attributes").on( 'click', '.clear-attribute', function(e) {
1203
                e.preventDefault();
1203
                $(this).parent()
1204
                $(this).parent()
1204
                    .find('textarea').attr('value', '').end()
1205
                    .find('textarea').val("").end()
1205
                    .find('select').attr('value', '').end();
1206
                    .find('select').val("").end();
1206
1207
                return false;
1208
            } );
1207
            } );
1209
1208
1210
            $(".patron-attributes").on( 'click', '.clone-attribute', function() {
1209
            $(".patron-attributes").on( 'click', '.clone-attribute', function() {
1211
- 

Return to bug 35280