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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-4 / +3 lines)
Lines 223-231 $.widget.bridge('uitooltip', $.ui.tooltip); Link Here
223
        window.print();
223
        window.print();
224
        return false;
224
        return false;
225
    });
225
    });
226
    $("#ulactioncontainer > ul > li > a.addtoshelf").on("click",function(){
226
    $(".addtoshelf").on("click",function(e){
227
        Dopop('opac-addbybiblionumber.pl?biblionumber=[% biblionumber | uri %]');
227
        e.preventDefault();
228
        return false;
228
        Dopop( this.href );
229
    });
229
    });
230
    $("body").on("click", ".addtocart", function(e){
230
    $("body").on("click", ".addtocart", function(e){
231
        e.preventDefault();
231
        e.preventDefault();
232
- 

Return to bug 27571