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

(-)a/koha-tmpl/intranet-tmpl/prog/js/members.js (-7 / +1 lines)
Lines 34-44 function check_form_borrowers(nav){ Link Here
34
    }
34
    }
35
}
35
}
36
36
37
function Dopop(link) {
38
// //   var searchstring=document.form.value[i].value;
39
    var newin=window.open(link,'popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=no,top');
40
}
41
42
function clear_entry(node) {
37
function clear_entry(node) {
43
    var original = $(node).parent();
38
    var original = $(node).parent();
44
    $("textarea", original).attr('value', '');
39
    $("textarea", original).attr('value', '');
Lines 196-202 $(document).ready(function(){ Link Here
196
191
197
    $('body').on('click', '#guarantor_search', function(e) {
192
    $('body').on('click', '#guarantor_search', function(e) {
198
        e.preventDefault();
193
        e.preventDefault();
199
        var newin = window.open('guarantor_search.pl','popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=yes,top');
194
        var newin = window.open('guarantor_search.pl','popup','width=800,height=600,resizable=no,toolbar=false,scrollbars=yes,top');
200
    });
195
    });
201
196
202
    $('#guarantor_relationships').on('click', '.guarantor_cancel', function(e) {
197
    $('#guarantor_relationships').on('click', '.guarantor_cancel', function(e) {
203
- 

Return to bug 26755