Bugzilla – Attachment 37316 Details for
Bug 7391
Return to cart after adding items to a list
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 7391: Return to cart after adding items to a list
PASSED-QA-Bug-7391-Return-to-cart-after-adding-ite.patch (text/plain), 1.54 KB, created by
Kyle M Hall (khall)
on 2015-03-27 13:38:35 UTC
(
hide
)
Description:
[PASSED QA] Bug 7391: Return to cart after adding items to a list
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2015-03-27 13:38:35 UTC
Size:
1.54 KB
patch
obsolete
>From 1944d3c944b8fe25efc80f1dad662cc8a49ec9a4 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Thu, 26 Mar 2015 16:10:11 +0100 >Subject: [PATCH] [PASSED QA] Bug 7391: Return to cart after adding items to a list > >If you select items in your cart and choose to add them to a list, upon >completion of the transaction the pop-up window, which was originally >opened for the cart, is closed. Instead you should be returned to the >Cart view. > >Test plan: >Confirm the expected behavior. > >Confirmed. >Signed-off-by: Marc Veron <veron@veron.ch> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > koha-tmpl/opac-tmpl/bootstrap/js/basket.js | 6 +++++- > 1 files changed, 5 insertions(+), 1 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js b/koha-tmpl/opac-tmpl/bootstrap/js/basket.js >index 675dc0a..6db26d1 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js >+++ b/koha-tmpl/opac-tmpl/bootstrap/js/basket.js >@@ -424,7 +424,11 @@ function openBiblio(dest,biblionumber) { > function addSelToShelf() { > var items = document.getElementById('records').value; > if(items){ >- document.location = "/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber="+items; >+ var iW = 820; >+ var iH = 450; >+ var optWin = "status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height="+iH+",width="+iW; >+ var loc = "/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber="+items; >+ var shelf = open(loc, "shelf", optWin); > } else { > alert(MSG_NO_RECORD_SELECTED); > } >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 7391
:
37280
|
37283
| 37316