Bug 17210: Add missing return false for print-large
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 7 Sep 2016 10:19:15 +0000 (11:19 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 9 Sep 2016 10:50:16 +0000 (10:50 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc

index fec6114..7f3ba13 100644 (file)
@@ -152,6 +152,7 @@ $.widget.bridge('uitooltip', $.ui.tooltip);
 
     $(".print-large").on("click",function(){
         window.print();
+        return false;
     });
     $(".addtoshelf").on("click",function(){
         Dopop('opac-addbybiblionumber.pl?biblionumber=[% biblionumber %]');