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

(-)a/koha-tmpl/intranet-tmpl/prog/js/z3950_search.js (-3 / +2 lines)
Lines 120-126 $( document ).ready( function() { Link Here
120
    });
120
    });
121
    $( "#marcPreview" ).on( "hidden", function() {
121
    $( "#marcPreview" ).on( "hidden", function() {
122
        $( "#marcPreviewLabel" ).html( "" );
122
        $( "#marcPreviewLabel" ).html( "" );
123
        $( "#marcPreview .modal-body" ).html( "<div id='loading'><img src='" + interface + "/" + theme + "/img/spinner-small.gif' alt='' /> " + MSG_LOADING + "</div>" );
123
        $( "#marcPreview .modal-body" ).html( "<div id='loading'><img src='" + interface + "/" + theme + "/img/spinner-small.gif' alt='' /> " + __("Loading") + "</div>" );
124
    });
124
    });
125
    $( "#resultst" ).on("click", ".previewData", function(e) {
125
    $( "#resultst" ).on("click", ".previewData", function(e) {
126
        e.preventDefault();
126
        e.preventDefault();
Lines 132-138 $( document ).ready( function() { Link Here
132
    });
132
    });
133
    $( "#dataPreview" ).on( "hidden", function() {
133
    $( "#dataPreview" ).on( "hidden", function() {
134
        $( "#dataPreviewLabel" ).html( "" );
134
        $( "#dataPreviewLabel" ).html( "" );
135
        $( "#dataPreview .modal-body" ).html( "<div id='loading'><img src='" + interface + "/" + theme + "/img/spinner-small.gif' alt='' /> " + MSG_LOADING + "</div>" );
135
        $( "#dataPreview .modal-body" ).html( "<div id='loading'><img src='" + interface + "/" + theme + "/img/spinner-small.gif' alt='' /> " + __("Loading") + "</div>" );
136
    });
136
    });
137
    $( "#resultst" ).on("click", ".import_record", function(e) {
137
    $( "#resultst" ).on("click", ".import_record", function(e) {
138
        e.preventDefault();
138
        e.preventDefault();
139
- 

Return to bug 26291