Bugzilla – Attachment 37283 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]
[Signed-off] Bug 7391: Return to cart after adding items to a list
Signed-off-Bug-7391-Return-to-cart-after-adding-it.patch (text/plain), 1.58 KB, created by
Marc Véron
on 2015-03-26 15:35:20 UTC
(
hide
)
Description:
[Signed-off] Bug 7391: Return to cart after adding items to a list
Filename:
MIME Type:
Creator:
Marc Véron
Created:
2015-03-26 15:35:20 UTC
Size:
1.58 KB
patch
obsolete
>From 189a007e43fe060bf226e2d468613eb2b49600fa 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] [Signed-off] Bug 7391: Return to cart after adding items to > a list >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >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 Véron <veron@veron.ch> >--- > koha-tmpl/opac-tmpl/bootstrap/js/basket.js | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > >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.10.4
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